packages = c('tmap', 'sf', 'tidyverse', 'RColorBrewer', 'classInt', 'spatstat', 'rgdal', 'maptools')
for (p in packages){
if(!require(p, character.only = T)){
install.packages(p)
}
library(p, character.only = T)
}
Loading required package: tmap
Loading required package: sf
Linking to GEOS 3.6.1, GDAL 2.2.0, proj.4 4.9.3
Loading required package: tidyverse
[30m-- [1mAttaching packages[22m --------------------------------------- tidyverse 1.2.1 --[39m
[30m[32mv[30m [34mggplot2[30m 2.2.1 [32mv[30m [34mpurrr [30m 0.2.4
[32mv[30m [34mtibble [30m 1.4.2 [32mv[30m [34mdplyr [30m 0.7.4
[32mv[30m [34mtidyr [30m 0.8.0 [32mv[30m [34mstringr[30m 1.2.0
[32mv[30m [34mreadr [30m 1.1.1 [32mv[30m [34mforcats[30m 0.2.0[39m
[30m-- [1mConflicts[22m ------------------------------------------ tidyverse_conflicts() --
[31mx[30m [34mdplyr[30m::[32mcollapse()[30m masks [34mnlme[30m::collapse()
[31mx[30m [34mdplyr[30m::[32mfilter()[30m masks [34mstats[30m::filter()
[31mx[30m [34mdplyr[30m::[32mlag()[30m masks [34mstats[30m::lag()[39m
Loading required package: RColorBrewer
Loading required package: classInt
data <- read_csv('csv/LTATrafficDataClean2.csv')
Parsed with column specification:
cols(
Type = col_character(),
Latitude = col_double(),
Longitude = col_double(),
Date = col_character(),
Time = col_time(format = ""),
Descriptions = col_character()
)
dataSF <- st_as_sf(data, coords =c( 'Longitude', 'Latitude') , crs = '+proj=longlat +datum=WGS84 +no_defs')
expressway<- readShapeSpatial('RoadNetwork/roads_expressway')
use rgdal::readOGR or sf::st_readuse rgdal::readOGR or sf::st_read
sgmap <- st_read('data.gov.sg/planningArea', 'MP14_PLNG_AREA_WEB_PL')
Reading layer `MP14_PLNG_AREA_WEB_PL' from data source `C:\Users\vince\Google Drive\3.4 SMU\3.2 Geospatial\Project\Project\data.gov.sg\planningArea' using driver `ESRI Shapefile'
Simple feature collection with 55 features and 12 fields
geometry type: MULTIPOLYGON
dimension: XY
bbox: xmin: 2667.538 ymin: 15748.72 xmax: 56396.44 ymax: 50256.33
epsg (SRID): NA
proj4string: +proj=tmerc +lat_0=1.366666666666667 +lon_0=103.8333333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +datum=WGS84 +units=m +no_defs
dataSF_svy21 <- st_transform(dataSF, 3414)
accidents <- dataSF_svy21 %>% filter(Type == 'Accident')
tm_shape(sgmap) + tm_borders() + tm_shape(accidents) + tm_symbols(size = 0.5)
{r} st_write(accidents, “csv/accidents.csv”, layer_options = “GEOMETRY=AS_XY”)
accidents_xy <- read.csv('csv/accidents.csv')
accidents_ppp <- ppp(accidents_xy[,1], accidents_xy[,2], c(min(accidents_xy[,1]), max(accidents_xy[,1])), c(min(accidents_xy[,2]), max(accidents_xy[,2])))
data contain duplicated points
plot(accidents_ppp)
summary(accidents_ppp)
Planar point pattern: 334 points
Average intensity 4.612178e-07 points per square unit
*Pattern contains duplicated points*
Coordinates are given to 3 decimal places
i.e. rounded to the nearest multiple of 0.001 units
Window: rectangle = [6960.66, 44807.34] x [27682.54, 46816.84] units
Window area = 724170000 square units
plot(Kest(accidents_ppp))
plot(envelope(accidents_ppp,Kest))
Generating 99 simulations of CSR ...
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99.
Done.
plot(density(accidents_ppp))
expressway_psp <- as.psp(expressway)
6 columns of data frame discarded
expressway_linnet <- as.linnet.psp(expressway_psp, sparse = TRUE)
accidents_lpp <- lpp(accidents_ppp, expressway_linnet)
plot(density.lpp(accidents_lpp, 1000))
plot(envelope(accidents_lpp,linearK))
mce_kpe_camera <- st_read('data.gov.sg/mce-kpe-speed-camera-shp', 'MCE_KPE_SPEED_CAMERA')
Reading layer `MCE_KPE_SPEED_CAMERA' from data source `C:\Users\vince\Google Drive\3.4 SMU\3.2 Geospatial\Project\Project\data.gov.sg\mce-kpe-speed-camera-shp' using driver `ESRI Shapefile'
Simple feature collection with 13 features and 6 fields
geometry type: POINT
dimension: XY
bbox: xmin: 31616.99 ymin: 28549.68 xmax: 35266.48 ymax: 36759.98
epsg (SRID): NA
proj4string: +proj=tmerc +lat_0=1.366666666666667 +lon_0=103.8333333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +datum=WGS84 +units=m +no_defs
mce_kpe_camera$Type <- 'MCE_KPE_Camera'
st_write(mce_kpe_camera, "csv/mce_kpe_camera.csv", layer_options = "GEOMETRY=AS_XY")
Dataset C:\Users\vince\Google Drive\3.4 SMU\3.2 Geospatial\Project\Project\csv\mce_kpe_camera.csv already exists: remove first, use update=TRUE to append,
delete_layer=TRUE to delete layer, or delete_dsn=TRUE to remove the entire data source before writing.
Error in CPL_write_ogr(obj, dsn, layer, driver, as.character(dataset_options), :
Dataset already exists.
mce_kpe_camera_xy <- read.csv('csv/mce_kpe_camera.csv')
mce_kpe_camera_join <- select(mce_kpe_camera_xy, X, Y, Type )
accidents_join <- select(accidents_xy, X, Y, Type)
accidents_mce_kpe_cameras <- rbind(accidents_join, mce_kpe_camera_join)
accidents_mce_ppp <- ppp(accidents_mce_kpe_cameras[,1], accidents_mce_kpe_cameras[,2], c(min(accidents_mce_kpe_cameras[,1]), max(accidents_mce_kpe_cameras[,1])), c(min(accidents_mce_kpe_cameras[,2]), max(accidents_mce_kpe_cameras[,2])), marks = accidents_mce_kpe_cameras$Type)
data contain duplicated points
accidents_mce_lpp <- lpp(accidents_mce_ppp, expressway_linnet)
linearKcross(accidents_mce_lpp, 'Accident' , 'MCE_KPE_Camera')
st_write(accidents_final, "csv/accidents_sgmap_expressway.csv", layer_options = "GEOMETRY=AS_XY")
ignoring columns with unsupported type:
[1] "Time"
Writing layer `accidents_sgmap_expressway' to data source `csv/accidents_sgmap_expressway.csv' using driver `CSV'
options: GEOMETRY=AS_XY
features: 340
fields: 8
geometry type: Point
st_write(sgroad_pln_short, 'sgroad_joined.shp')
Writing layer `sgroad_joined' to data source `sgroad_joined.shp' using driver `ESRI Shapefile'
features: 32257
fields: 12
geometry type: Line String
GDAL Message 1: Value 482071862 of field osm_id of feature 1 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482071863 of field osm_id of feature 3 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482072795 of field osm_id of feature 5 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073396 of field osm_id of feature 7 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073397 of field osm_id of feature 9 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533833003 of field osm_id of feature 10 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073398 of field osm_id of feature 11 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073399 of field osm_id of feature 13 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533833004 of field osm_id of feature 14 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073400 of field osm_id of feature 15 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073401 of field osm_id of feature 18 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533834449 of field osm_id of feature 19 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073402 of field osm_id of feature 20 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073403 of field osm_id of feature 23 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073404 of field osm_id of feature 25 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073405 of field osm_id of feature 27 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073406 of field osm_id of feature 30 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073407 of field osm_id of feature 33 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073408 of field osm_id of feature 35 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482073410 of field osm_id of feature 37 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482075112 of field osm_id of feature 39 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482075114 of field osm_id of feature 41 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482075117 of field osm_id of feature 45 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482075119 of field osm_id of feature 47 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482075121 of field osm_id of feature 49 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078521 of field osm_id of feature 52 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078525 of field osm_id of feature 55 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078528 of field osm_id of feature 57 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078530 of field osm_id of feature 59 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078534 of field osm_id of feature 62 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078536 of field osm_id of feature 64 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078539 of field osm_id of feature 66 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078542 of field osm_id of feature 68 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078546 of field osm_id of feature 70 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078549 of field osm_id of feature 72 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482078552 of field osm_id of feature 75 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482079524 of field osm_id of feature 77 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080582 of field osm_id of feature 79 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080583 of field osm_id of feature 83 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080584 of field osm_id of feature 85 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080585 of field osm_id of feature 87 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080586 of field osm_id of feature 89 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080587 of field osm_id of feature 93 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080588 of field osm_id of feature 95 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482080589 of field osm_id of feature 97 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482082378 of field osm_id of feature 99 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482082472 of field osm_id of feature 101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482082699 of field osm_id of feature 103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482082701 of field osm_id of feature 106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482082702 of field osm_id of feature 108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083272 of field osm_id of feature 110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083274 of field osm_id of feature 112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083276 of field osm_id of feature 114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083278 of field osm_id of feature 117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083280 of field osm_id of feature 120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083282 of field osm_id of feature 122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083284 of field osm_id of feature 126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083287 of field osm_id of feature 129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482083384 of field osm_id of feature 132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084331 of field osm_id of feature 134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084332 of field osm_id of feature 136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084333 of field osm_id of feature 138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084641 of field osm_id of feature 140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084681 of field osm_id of feature 142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084682 of field osm_id of feature 145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084683 of field osm_id of feature 147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084684 of field osm_id of feature 149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482084744 of field osm_id of feature 151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482085249 of field osm_id of feature 153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482085250 of field osm_id of feature 155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482085251 of field osm_id of feature 157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482085252 of field osm_id of feature 159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482085253 of field osm_id of feature 161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086352 of field osm_id of feature 163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086353 of field osm_id of feature 165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533851203 of field osm_id of feature 166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086354 of field osm_id of feature 167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086716 of field osm_id of feature 169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533851204 of field osm_id of feature 170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086717 of field osm_id of feature 171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086718 of field osm_id of feature 173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086719 of field osm_id of feature 175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482086720 of field osm_id of feature 177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087245 of field osm_id of feature 179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087246 of field osm_id of feature 181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087248 of field osm_id of feature 183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087250 of field osm_id of feature 185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087293 of field osm_id of feature 187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087293 of field osm_id of feature 188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087294 of field osm_id of feature 190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087295 of field osm_id of feature 192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087296 of field osm_id of feature 194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087296 of field osm_id of feature 195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087297 of field osm_id of feature 197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087297 of field osm_id of feature 198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087298 of field osm_id of feature 200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533853524 of field osm_id of feature 201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533853524 of field osm_id of feature 202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087299 of field osm_id of feature 203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087300 of field osm_id of feature 205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533853525 of field osm_id of feature 206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533853525 of field osm_id of feature 207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087301 of field osm_id of feature 208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087328 of field osm_id of feature 210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087329 of field osm_id of feature 212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087335 of field osm_id of feature 215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087336 of field osm_id of feature 218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087337 of field osm_id of feature 220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087338 of field osm_id of feature 223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087339 of field osm_id of feature 225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087340 of field osm_id of feature 228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087495 of field osm_id of feature 230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087543 of field osm_id of feature 232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087544 of field osm_id of feature 234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533857011 of field osm_id of feature 235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087545 of field osm_id of feature 236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087546 of field osm_id of feature 238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533857536 of field osm_id of feature 239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087547 of field osm_id of feature 240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087548 of field osm_id of feature 242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482087549 of field osm_id of feature 244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088087 of field osm_id of feature 246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088088 of field osm_id of feature 248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088089 of field osm_id of feature 250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088091 of field osm_id of feature 252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088807 of field osm_id of feature 254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088811 of field osm_id of feature 256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088812 of field osm_id of feature 258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088813 of field osm_id of feature 260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482088814 of field osm_id of feature 262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089300 of field osm_id of feature 264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089301 of field osm_id of feature 266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089302 of field osm_id of feature 268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089304 of field osm_id of feature 270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089305 of field osm_id of feature 272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089314 of field osm_id of feature 274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089314 of field osm_id of feature 275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089315 of field osm_id of feature 278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089858 of field osm_id of feature 280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089861 of field osm_id of feature 282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089865 of field osm_id of feature 284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089868 of field osm_id of feature 286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089870 of field osm_id of feature 288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089872 of field osm_id of feature 290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089874 of field osm_id of feature 292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089877 of field osm_id of feature 294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089880 of field osm_id of feature 296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089882 of field osm_id of feature 298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533862783 of field osm_id of feature 299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089885 of field osm_id of feature 300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482089888 of field osm_id of feature 302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533862784 of field osm_id of feature 303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482090269 of field osm_id of feature 304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482090279 of field osm_id of feature 306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533862785 of field osm_id of feature 307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482091077 of field osm_id of feature 308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482091079 of field osm_id of feature 310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482091081 of field osm_id of feature 312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482091083 of field osm_id of feature 314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482091696 of field osm_id of feature 316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092100 of field osm_id of feature 318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092101 of field osm_id of feature 321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092102 of field osm_id of feature 323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092103 of field osm_id of feature 325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092104 of field osm_id of feature 327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092105 of field osm_id of feature 329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482092662 of field osm_id of feature 331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482093298 of field osm_id of feature 333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482093299 of field osm_id of feature 335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482099034 of field osm_id of feature 337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100978 of field osm_id of feature 339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100979 of field osm_id of feature 341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100980 of field osm_id of feature 343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100981 of field osm_id of feature 345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100982 of field osm_id of feature 347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482100983 of field osm_id of feature 349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482101760 of field osm_id of feature 351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482103446 of field osm_id of feature 353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482103447 of field osm_id of feature 356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482104103 of field osm_id of feature 358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482106730 of field osm_id of feature 360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107090 of field osm_id of feature 362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107093 of field osm_id of feature 364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107096 of field osm_id of feature 366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107099 of field osm_id of feature 368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107102 of field osm_id of feature 370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107105 of field osm_id of feature 373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107109 of field osm_id of feature 375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107853 of field osm_id of feature 378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482107854 of field osm_id of feature 380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108519 of field osm_id of feature 382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108835 of field osm_id of feature 384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108836 of field osm_id of feature 386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108837 of field osm_id of feature 388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108838 of field osm_id of feature 390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108839 of field osm_id of feature 392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108840 of field osm_id of feature 394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108842 of field osm_id of feature 396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108843 of field osm_id of feature 399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108844 of field osm_id of feature 402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108845 of field osm_id of feature 404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108845 of field osm_id of feature 405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108846 of field osm_id of feature 407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108848 of field osm_id of feature 409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108851 of field osm_id of feature 411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108853 of field osm_id of feature 413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108854 of field osm_id of feature 415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533892780 of field osm_id of feature 416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108855 of field osm_id of feature 417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108856 of field osm_id of feature 419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533892781 of field osm_id of feature 420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108858 of field osm_id of feature 421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108866 of field osm_id of feature 423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533892782 of field osm_id of feature 424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482108868 of field osm_id of feature 425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482112725 of field osm_id of feature 427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482112726 of field osm_id of feature 430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482112727 of field osm_id of feature 433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482112728 of field osm_id of feature 435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482112729 of field osm_id of feature 437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482113075 of field osm_id of feature 439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482114384 of field osm_id of feature 441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482114385 of field osm_id of feature 443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482115540 of field osm_id of feature 445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482126064 of field osm_id of feature 447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482126344 of field osm_id of feature 449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482127147 of field osm_id of feature 451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482127149 of field osm_id of feature 454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482127150 of field osm_id of feature 456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482127824 of field osm_id of feature 458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482200612 of field osm_id of feature 460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482200614 of field osm_id of feature 462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482200617 of field osm_id of feature 464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482218808 of field osm_id of feature 466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482220500 of field osm_id of feature 468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255012 of field osm_id of feature 470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255013 of field osm_id of feature 472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255014 of field osm_id of feature 475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255015 of field osm_id of feature 477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255888 of field osm_id of feature 479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482255889 of field osm_id of feature 481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482256064 of field osm_id of feature 483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482256068 of field osm_id of feature 485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482256070 of field osm_id of feature 487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482256077 of field osm_id of feature 490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482258920 of field osm_id of feature 492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482258923 of field osm_id of feature 494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482259331 of field osm_id of feature 496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482259332 of field osm_id of feature 498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482260934 of field osm_id of feature 500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482261270 of field osm_id of feature 502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482261273 of field osm_id of feature 504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482261276 of field osm_id of feature 506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482261280 of field osm_id of feature 508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482262399 of field osm_id of feature 511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482262402 of field osm_id of feature 513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482262405 of field osm_id of feature 516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482262408 of field osm_id of feature 518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265066 of field osm_id of feature 520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265067 of field osm_id of feature 522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265068 of field osm_id of feature 524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265069 of field osm_id of feature 526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265944 of field osm_id of feature 528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482265945 of field osm_id of feature 530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482266819 of field osm_id of feature 532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482266820 of field osm_id of feature 534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482266822 of field osm_id of feature 536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482266823 of field osm_id of feature 538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482266826 of field osm_id of feature 540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482268363 of field osm_id of feature 542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482268364 of field osm_id of feature 544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482268365 of field osm_id of feature 546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482268366 of field osm_id of feature 548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482268367 of field osm_id of feature 550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270668 of field osm_id of feature 552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270669 of field osm_id of feature 554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270670 of field osm_id of feature 556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270671 of field osm_id of feature 558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270671 of field osm_id of feature 559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270892 of field osm_id of feature 561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482270895 of field osm_id of feature 563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271595 of field osm_id of feature 565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271596 of field osm_id of feature 567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271597 of field osm_id of feature 569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271597 of field osm_id of feature 570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271598 of field osm_id of feature 572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482271599 of field osm_id of feature 574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272087 of field osm_id of feature 576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272088 of field osm_id of feature 579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272533 of field osm_id of feature 581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272534 of field osm_id of feature 583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272536 of field osm_id of feature 585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272538 of field osm_id of feature 587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272541 of field osm_id of feature 589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482272543 of field osm_id of feature 591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273622 of field osm_id of feature 593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273623 of field osm_id of feature 595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273624 of field osm_id of feature 597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273625 of field osm_id of feature 599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273626 of field osm_id of feature 601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273627 of field osm_id of feature 603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273629 of field osm_id of feature 605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273630 of field osm_id of feature 607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273631 of field osm_id of feature 609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482273632 of field osm_id of feature 611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482310370 of field osm_id of feature 613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482310371 of field osm_id of feature 615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482310372 of field osm_id of feature 617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482384346 of field osm_id of feature 620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482407210 of field osm_id of feature 622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482407211 of field osm_id of feature 624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482416616 of field osm_id of feature 626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482416617 of field osm_id of feature 628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482416618 of field osm_id of feature 630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533900072 of field osm_id of feature 631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514039 of field osm_id of feature 632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514040 of field osm_id of feature 634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533900073 of field osm_id of feature 635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514387 of field osm_id of feature 636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514388 of field osm_id of feature 638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514389 of field osm_id of feature 640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514845 of field osm_id of feature 643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514847 of field osm_id of feature 645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514849 of field osm_id of feature 647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482514850 of field osm_id of feature 649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482515561 of field osm_id of feature 651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482515564 of field osm_id of feature 653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482519377 of field osm_id of feature 655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482519378 of field osm_id of feature 657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482519380 of field osm_id of feature 659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482519381 of field osm_id of feature 661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522723 of field osm_id of feature 663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522724 of field osm_id of feature 665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522725 of field osm_id of feature 668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522726 of field osm_id of feature 670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522727 of field osm_id of feature 672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522729 of field osm_id of feature 674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522730 of field osm_id of feature 676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482522732 of field osm_id of feature 678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482524702 of field osm_id of feature 680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482524703 of field osm_id of feature 682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482529977 of field osm_id of feature 684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482531033 of field osm_id of feature 686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482531034 of field osm_id of feature 688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482534352 of field osm_id of feature 690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482534353 of field osm_id of feature 692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482698310 of field osm_id of feature 695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482789084 of field osm_id of feature 698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482974850 of field osm_id of feature 700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483076077 of field osm_id of feature 703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483100679 of field osm_id of feature 706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483100680 of field osm_id of feature 708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483239828 of field osm_id of feature 710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483248235 of field osm_id of feature 712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483329212 of field osm_id of feature 714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483604918 of field osm_id of feature 716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483604933 of field osm_id of feature 718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483604944 of field osm_id of feature 720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 483604945 of field osm_id of feature 722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 484857200 of field osm_id of feature 724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 484857214 of field osm_id of feature 726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 484999120 of field osm_id of feature 729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 485856943 of field osm_id of feature 731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 485860195 of field osm_id of feature 733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486018315 of field osm_id of feature 735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533903814 of field osm_id of feature 736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486022732 of field osm_id of feature 737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486022733 of field osm_id of feature 739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533903815 of field osm_id of feature 740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025327 of field osm_id of feature 741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025330 of field osm_id of feature 743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025333 of field osm_id of feature 745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025351 of field osm_id of feature 747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025363 of field osm_id of feature 750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025364 of field osm_id of feature 752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486025366 of field osm_id of feature 754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486031594 of field osm_id of feature 757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486036466 of field osm_id of feature 760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486036467 of field osm_id of feature 762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486036467 of field osm_id of feature 763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486036468 of field osm_id of feature 765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486036468 of field osm_id of feature 766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533904634 of field osm_id of feature 771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533904635 of field osm_id of feature 773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486523004 of field osm_id of feature 775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486523005 of field osm_id of feature 777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 486523006 of field osm_id of feature 780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533908310 of field osm_id of feature 791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533908311 of field osm_id of feature 793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533909547 of field osm_id of feature 806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533909548 of field osm_id of feature 808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533909994 of field osm_id of feature 814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533909995 of field osm_id of feature 816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533911228 of field osm_id of feature 832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533911229 of field osm_id of feature 835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533911231 of field osm_id of feature 837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533911231 of field osm_id of feature 838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 487353400 of field osm_id of feature 847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488794520 of field osm_id of feature 849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488794521 of field osm_id of feature 851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802614 of field osm_id of feature 853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802615 of field osm_id of feature 855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802618 of field osm_id of feature 857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802619 of field osm_id of feature 859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989670 of field osm_id of feature 860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802620 of field osm_id of feature 861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802621 of field osm_id of feature 863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989671 of field osm_id of feature 864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802622 of field osm_id of feature 865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802623 of field osm_id of feature 867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989672 of field osm_id of feature 868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989672 of field osm_id of feature 869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802624 of field osm_id of feature 870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488802625 of field osm_id of feature 872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989673 of field osm_id of feature 873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 488898648 of field osm_id of feature 874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489014727 of field osm_id of feature 876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989674 of field osm_id of feature 877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489015275 of field osm_id of feature 878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492090 of field osm_id of feature 880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533989675 of field osm_id of feature 881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492091 of field osm_id of feature 882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492092 of field osm_id of feature 884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492094 of field osm_id of feature 886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534234679 of field osm_id of feature 887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492096 of field osm_id of feature 888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492097 of field osm_id of feature 890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492098 of field osm_id of feature 892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492099 of field osm_id of feature 894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492099 of field osm_id of feature 895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492100 of field osm_id of feature 897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492101 of field osm_id of feature 899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492102 of field osm_id of feature 901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489492102 of field osm_id of feature 902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534568989 of field osm_id of feature 903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489499533 of field osm_id of feature 904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489780747 of field osm_id of feature 906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489780748 of field osm_id of feature 908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489780749 of field osm_id of feature 910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489780750 of field osm_id of feature 912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489781752 of field osm_id of feature 914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489781753 of field osm_id of feature 916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489781754 of field osm_id of feature 918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 489978031 of field osm_id of feature 920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490159262 of field osm_id of feature 922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490160618 of field osm_id of feature 924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490161050 of field osm_id of feature 926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490161052 of field osm_id of feature 928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490250982 of field osm_id of feature 930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490792689 of field osm_id of feature 932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490792689 of field osm_id of feature 933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490858880 of field osm_id of feature 935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490968796 of field osm_id of feature 937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490968798 of field osm_id of feature 939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490968802 of field osm_id of feature 941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490968804 of field osm_id of feature 943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 490968805 of field osm_id of feature 945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491024780 of field osm_id of feature 947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491024781 of field osm_id of feature 949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491024781 of field osm_id of feature 950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491025262 of field osm_id of feature 952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534603656 of field osm_id of feature 953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491025263 of field osm_id of feature 954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491025263 of field osm_id of feature 955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491082906 of field osm_id of feature 957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491082907 of field osm_id of feature 959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491111400 of field osm_id of feature 961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190915 of field osm_id of feature 963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190916 of field osm_id of feature 965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190917 of field osm_id of feature 967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190918 of field osm_id of feature 969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190919 of field osm_id of feature 971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 491190922 of field osm_id of feature 973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534603674 of field osm_id of feature 985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 492961740 of field osm_id of feature 995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 492961744 of field osm_id of feature 997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 492962291 of field osm_id of feature 999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493087190 of field osm_id of feature 1001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493444214 of field osm_id of feature 1003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493444215 of field osm_id of feature 1005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493444997 of field osm_id of feature 1007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493444998 of field osm_id of feature 1009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493619048 of field osm_id of feature 1011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493619049 of field osm_id of feature 1013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493824379 of field osm_id of feature 1015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493824380 of field osm_id of feature 1017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493824597 of field osm_id of feature 1019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493838352 of field osm_id of feature 1021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 493838353 of field osm_id of feature 1023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 494308822 of field osm_id of feature 1025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 494308823 of field osm_id of feature 1028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 494980808 of field osm_id of feature 1037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 494980809 of field osm_id of feature 1039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 495037931 of field osm_id of feature 1041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 495038836 of field osm_id of feature 1043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 495131104 of field osm_id of feature 1045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 495131336 of field osm_id of feature 1047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496391643 of field osm_id of feature 1053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496391644 of field osm_id of feature 1055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496391645 of field osm_id of feature 1057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496391646 of field osm_id of feature 1059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496820600 of field osm_id of feature 1062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 496820600 of field osm_id of feature 1063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 497372799 of field osm_id of feature 1065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 498175883 of field osm_id of feature 1067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 498175883 of field osm_id of feature 1068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 498175884 of field osm_id of feature 1070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 498175884 of field osm_id of feature 1071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499121699 of field osm_id of feature 1073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499248514 of field osm_id of feature 1075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499763027 of field osm_id of feature 1077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499763029 of field osm_id of feature 1079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499763030 of field osm_id of feature 1081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 499763031 of field osm_id of feature 1083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500037386 of field osm_id of feature 1085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500038234 of field osm_id of feature 1087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500038526 of field osm_id of feature 1089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500038528 of field osm_id of feature 1091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500041699 of field osm_id of feature 1094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500043354 of field osm_id of feature 1096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500044487 of field osm_id of feature 1098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500044780 of field osm_id of feature 1100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534612736 of field osm_id of feature 1101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500300004 of field osm_id of feature 1102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500301011 of field osm_id of feature 1104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500301011 of field osm_id of feature 1105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534612737 of field osm_id of feature 1106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307160 of field osm_id of feature 1107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307165 of field osm_id of feature 1109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307168 of field osm_id of feature 1111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307170 of field osm_id of feature 1113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307171 of field osm_id of feature 1115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500307172 of field osm_id of feature 1117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500366979 of field osm_id of feature 1119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500366979 of field osm_id of feature 1120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367241 of field osm_id of feature 1122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367242 of field osm_id of feature 1124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367242 of field osm_id of feature 1125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367325 of field osm_id of feature 1128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367613 of field osm_id of feature 1130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500367613 of field osm_id of feature 1131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500368698 of field osm_id of feature 1134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500368698 of field osm_id of feature 1135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500368903 of field osm_id of feature 1137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500368903 of field osm_id of feature 1138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500368905 of field osm_id of feature 1140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500369763 of field osm_id of feature 1142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500370976 of field osm_id of feature 1144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500371481 of field osm_id of feature 1146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372302 of field osm_id of feature 1148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372303 of field osm_id of feature 1150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372306 of field osm_id of feature 1152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372422 of field osm_id of feature 1154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372423 of field osm_id of feature 1156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500372424 of field osm_id of feature 1158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373452 of field osm_id of feature 1160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373453 of field osm_id of feature 1162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373454 of field osm_id of feature 1164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373595 of field osm_id of feature 1166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373596 of field osm_id of feature 1168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373597 of field osm_id of feature 1170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373598 of field osm_id of feature 1172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500373727 of field osm_id of feature 1174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500374533 of field osm_id of feature 1176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 500374534 of field osm_id of feature 1178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 501749250 of field osm_id of feature 1180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 501749251 of field osm_id of feature 1182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 501749252 of field osm_id of feature 1184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 501749253 of field osm_id of feature 1187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 501941273 of field osm_id of feature 1189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502013656 of field osm_id of feature 1191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502081368 of field osm_id of feature 1193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502081369 of field osm_id of feature 1196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502198140 of field osm_id of feature 1199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502459698 of field osm_id of feature 1201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619085 of field osm_id of feature 1202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502459701 of field osm_id of feature 1203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 502615122 of field osm_id of feature 1205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619086 of field osm_id of feature 1206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164307 of field osm_id of feature 1207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164309 of field osm_id of feature 1209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164312 of field osm_id of feature 1211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164314 of field osm_id of feature 1213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164315 of field osm_id of feature 1215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619091 of field osm_id of feature 1216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164316 of field osm_id of feature 1217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164319 of field osm_id of feature 1219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619092 of field osm_id of feature 1220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503164324 of field osm_id of feature 1221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503384865 of field osm_id of feature 1223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503473131 of field osm_id of feature 1225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503484802 of field osm_id of feature 1227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503519458 of field osm_id of feature 1230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503519459 of field osm_id of feature 1233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503519855 of field osm_id of feature 1235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503519856 of field osm_id of feature 1237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503519954 of field osm_id of feature 1239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503589910 of field osm_id of feature 1241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503693691 of field osm_id of feature 1243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503693692 of field osm_id of feature 1245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619204 of field osm_id of feature 1246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503693693 of field osm_id of feature 1247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503693696 of field osm_id of feature 1250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534619207 of field osm_id of feature 1251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503693697 of field osm_id of feature 1252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696242 of field osm_id of feature 1255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696243 of field osm_id of feature 1257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696244 of field osm_id of feature 1259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696245 of field osm_id of feature 1261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696246 of field osm_id of feature 1263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696247 of field osm_id of feature 1265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503696248 of field osm_id of feature 1268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503699894 of field osm_id of feature 1270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503699895 of field osm_id of feature 1272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503906133 of field osm_id of feature 1274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503906134 of field osm_id of feature 1276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503906135 of field osm_id of feature 1278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503906136 of field osm_id of feature 1280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503906137 of field osm_id of feature 1282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503910612 of field osm_id of feature 1284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503919332 of field osm_id of feature 1286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503919335 of field osm_id of feature 1288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534621124 of field osm_id of feature 1289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503924607 of field osm_id of feature 1290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503924608 of field osm_id of feature 1292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503924609 of field osm_id of feature 1294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534621126 of field osm_id of feature 1295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534621126 of field osm_id of feature 1296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503924610 of field osm_id of feature 1297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503924611 of field osm_id of feature 1299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503948418 of field osm_id of feature 1301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534623004 of field osm_id of feature 1302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 503948419 of field osm_id of feature 1303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504126364 of field osm_id of feature 1305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534623005 of field osm_id of feature 1306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409973 of field osm_id of feature 1307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409974 of field osm_id of feature 1309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409975 of field osm_id of feature 1311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409976 of field osm_id of feature 1313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409977 of field osm_id of feature 1315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409978 of field osm_id of feature 1317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504409979 of field osm_id of feature 1319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411709 of field osm_id of feature 1321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411710 of field osm_id of feature 1323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411711 of field osm_id of feature 1325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411712 of field osm_id of feature 1327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411713 of field osm_id of feature 1329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504411714 of field osm_id of feature 1331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534623240 of field osm_id of feature 1332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504412620 of field osm_id of feature 1333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504412621 of field osm_id of feature 1335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504518002 of field osm_id of feature 1337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504518003 of field osm_id of feature 1339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504562675 of field osm_id of feature 1341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 504562675 of field osm_id of feature 1342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505012108 of field osm_id of feature 1344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505012109 of field osm_id of feature 1346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505188333 of field osm_id of feature 1348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505212787 of field osm_id of feature 1350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505216191 of field osm_id of feature 1352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 505216200 of field osm_id of feature 1354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534629584 of field osm_id of feature 1358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534629586 of field osm_id of feature 1360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534629586 of field osm_id of feature 1361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534629589 of field osm_id of feature 1363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630352 of field osm_id of feature 1370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 506882382 of field osm_id of feature 1371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 506882382 of field osm_id of feature 1372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 507733239 of field osm_id of feature 1374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630355 of field osm_id of feature 1375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 507913548 of field osm_id of feature 1376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 507913549 of field osm_id of feature 1378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630359 of field osm_id of feature 1379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508033363 of field osm_id of feature 1380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508047536 of field osm_id of feature 1382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630361 of field osm_id of feature 1383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508047537 of field osm_id of feature 1384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508994091 of field osm_id of feature 1386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630671 of field osm_id of feature 1387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508994092 of field osm_id of feature 1388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 508994098 of field osm_id of feature 1390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630673 of field osm_id of feature 1391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630727 of field osm_id of feature 1393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630729 of field osm_id of feature 1395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630732 of field osm_id of feature 1397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630734 of field osm_id of feature 1399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630736 of field osm_id of feature 1401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534630739 of field osm_id of feature 1403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534631114 of field osm_id of feature 1405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534631116 of field osm_id of feature 1407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632365 of field osm_id of feature 1409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632367 of field osm_id of feature 1411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632368 of field osm_id of feature 1413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632370 of field osm_id of feature 1415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632372 of field osm_id of feature 1417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632374 of field osm_id of feature 1419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632376 of field osm_id of feature 1421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534632378 of field osm_id of feature 1423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534633473 of field osm_id of feature 1425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 509248649 of field osm_id of feature 1426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 509248650 of field osm_id of feature 1428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534634678 of field osm_id of feature 1429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 510625330 of field osm_id of feature 1430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511873446 of field osm_id of feature 1432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534634680 of field osm_id of feature 1433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511873447 of field osm_id of feature 1434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511892571 of field osm_id of feature 1436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534634682 of field osm_id of feature 1437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511892572 of field osm_id of feature 1438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511892573 of field osm_id of feature 1440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635081 of field osm_id of feature 1441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511892574 of field osm_id of feature 1442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 511892578 of field osm_id of feature 1444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635084 of field osm_id of feature 1445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870193 of field osm_id of feature 1447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635085 of field osm_id of feature 1448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870194 of field osm_id of feature 1449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870195 of field osm_id of feature 1451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635088 of field osm_id of feature 1452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870199 of field osm_id of feature 1453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870200 of field osm_id of feature 1456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635090 of field osm_id of feature 1457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870201 of field osm_id of feature 1458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870202 of field osm_id of feature 1460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635487 of field osm_id of feature 1461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870203 of field osm_id of feature 1462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870205 of field osm_id of feature 1464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534635488 of field osm_id of feature 1465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870206 of field osm_id of feature 1466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870207 of field osm_id of feature 1468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534636066 of field osm_id of feature 1469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870208 of field osm_id of feature 1470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870209 of field osm_id of feature 1472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534637112 of field osm_id of feature 1473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870212 of field osm_id of feature 1474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534637114 of field osm_id of feature 1475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870214 of field osm_id of feature 1476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870215 of field osm_id of feature 1478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534637117 of field osm_id of feature 1479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870216 of field osm_id of feature 1480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870217 of field osm_id of feature 1482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534637120 of field osm_id of feature 1483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870218 of field osm_id of feature 1484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870219 of field osm_id of feature 1486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534637123 of field osm_id of feature 1487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870220 of field osm_id of feature 1488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870221 of field osm_id of feature 1490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638193 of field osm_id of feature 1491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870222 of field osm_id of feature 1492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870223 of field osm_id of feature 1494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870224 of field osm_id of feature 1496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870225 of field osm_id of feature 1498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870226 of field osm_id of feature 1500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870227 of field osm_id of feature 1502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870227 of field osm_id of feature 1503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870228 of field osm_id of feature 1505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870232 of field osm_id of feature 1507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870234 of field osm_id of feature 1509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870235 of field osm_id of feature 1511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870238 of field osm_id of feature 1513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870239 of field osm_id of feature 1515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870240 of field osm_id of feature 1517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870241 of field osm_id of feature 1519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870242 of field osm_id of feature 1521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870243 of field osm_id of feature 1523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870244 of field osm_id of feature 1525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870245 of field osm_id of feature 1527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870246 of field osm_id of feature 1529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870247 of field osm_id of feature 1531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870248 of field osm_id of feature 1533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870249 of field osm_id of feature 1535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870250 of field osm_id of feature 1537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870251 of field osm_id of feature 1539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870252 of field osm_id of feature 1541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870253 of field osm_id of feature 1543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870254 of field osm_id of feature 1545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870255 of field osm_id of feature 1547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870257 of field osm_id of feature 1549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870258 of field osm_id of feature 1551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870260 of field osm_id of feature 1553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870262 of field osm_id of feature 1555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638684 of field osm_id of feature 1556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870264 of field osm_id of feature 1557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870265 of field osm_id of feature 1560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638685 of field osm_id of feature 1561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870266 of field osm_id of feature 1562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870269 of field osm_id of feature 1565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638686 of field osm_id of feature 1566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870272 of field osm_id of feature 1567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870274 of field osm_id of feature 1570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638687 of field osm_id of feature 1571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870275 of field osm_id of feature 1572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870277 of field osm_id of feature 1575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534638688 of field osm_id of feature 1576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870278 of field osm_id of feature 1577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870279 of field osm_id of feature 1580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870281 of field osm_id of feature 1582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870282 of field osm_id of feature 1584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870282 of field osm_id of feature 1585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870284 of field osm_id of feature 1587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870285 of field osm_id of feature 1589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870287 of field osm_id of feature 1592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870288 of field osm_id of feature 1594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870289 of field osm_id of feature 1596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870290 of field osm_id of feature 1598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870293 of field osm_id of feature 1600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870295 of field osm_id of feature 1602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870297 of field osm_id of feature 1604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870299 of field osm_id of feature 1607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870301 of field osm_id of feature 1609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870303 of field osm_id of feature 1611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870304 of field osm_id of feature 1613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870306 of field osm_id of feature 1615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870310 of field osm_id of feature 1617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870311 of field osm_id of feature 1619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870312 of field osm_id of feature 1621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870313 of field osm_id of feature 1623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870313 of field osm_id of feature 1624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534641641 of field osm_id of feature 1625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870314 of field osm_id of feature 1626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870315 of field osm_id of feature 1629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534641642 of field osm_id of feature 1630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870316 of field osm_id of feature 1631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870317 of field osm_id of feature 1633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870318 of field osm_id of feature 1635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870319 of field osm_id of feature 1637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870320 of field osm_id of feature 1639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870321 of field osm_id of feature 1641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870322 of field osm_id of feature 1643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642321 of field osm_id of feature 1644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642321 of field osm_id of feature 1645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870323 of field osm_id of feature 1646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870324 of field osm_id of feature 1648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642322 of field osm_id of feature 1649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870325 of field osm_id of feature 1650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870326 of field osm_id of feature 1652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642323 of field osm_id of feature 1653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870327 of field osm_id of feature 1654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870330 of field osm_id of feature 1656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642324 of field osm_id of feature 1657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870333 of field osm_id of feature 1658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870335 of field osm_id of feature 1660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642325 of field osm_id of feature 1661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870336 of field osm_id of feature 1662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870337 of field osm_id of feature 1664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870337 of field osm_id of feature 1665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642326 of field osm_id of feature 1666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870338 of field osm_id of feature 1667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870339 of field osm_id of feature 1669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534642694 of field osm_id of feature 1670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870340 of field osm_id of feature 1671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870341 of field osm_id of feature 1673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870342 of field osm_id of feature 1675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870343 of field osm_id of feature 1677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870344 of field osm_id of feature 1679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870345 of field osm_id of feature 1681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870346 of field osm_id of feature 1683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870347 of field osm_id of feature 1685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870348 of field osm_id of feature 1687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870349 of field osm_id of feature 1689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870350 of field osm_id of feature 1691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870351 of field osm_id of feature 1693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870353 of field osm_id of feature 1695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870354 of field osm_id of feature 1697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870355 of field osm_id of feature 1699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870357 of field osm_id of feature 1702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534651984 of field osm_id of feature 1703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870359 of field osm_id of feature 1704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870360 of field osm_id of feature 1706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534651987 of field osm_id of feature 1707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870361 of field osm_id of feature 1708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870362 of field osm_id of feature 1710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870363 of field osm_id of feature 1713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870364 of field osm_id of feature 1716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870365 of field osm_id of feature 1718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870365 of field osm_id of feature 1719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534653385 of field osm_id of feature 1720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870367 of field osm_id of feature 1721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870368 of field osm_id of feature 1723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534653386 of field osm_id of feature 1724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870369 of field osm_id of feature 1725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870370 of field osm_id of feature 1727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534654092 of field osm_id of feature 1728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870372 of field osm_id of feature 1729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870373 of field osm_id of feature 1731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534654093 of field osm_id of feature 1732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870374 of field osm_id of feature 1733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870375 of field osm_id of feature 1735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534654094 of field osm_id of feature 1736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870376 of field osm_id of feature 1737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870376 of field osm_id of feature 1738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870377 of field osm_id of feature 1740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870378 of field osm_id of feature 1742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870379 of field osm_id of feature 1744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534654400 of field osm_id of feature 1745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870382 of field osm_id of feature 1746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870383 of field osm_id of feature 1748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870386 of field osm_id of feature 1750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870388 of field osm_id of feature 1752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870390 of field osm_id of feature 1754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870393 of field osm_id of feature 1756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870395 of field osm_id of feature 1758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870397 of field osm_id of feature 1760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870399 of field osm_id of feature 1762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870401 of field osm_id of feature 1764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870403 of field osm_id of feature 1766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870406 of field osm_id of feature 1768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870407 of field osm_id of feature 1770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870408 of field osm_id of feature 1772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870409 of field osm_id of feature 1774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870410 of field osm_id of feature 1776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870411 of field osm_id of feature 1778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870412 of field osm_id of feature 1780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870413 of field osm_id of feature 1783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870414 of field osm_id of feature 1785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870415 of field osm_id of feature 1787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870416 of field osm_id of feature 1789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870417 of field osm_id of feature 1791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870418 of field osm_id of feature 1793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870419 of field osm_id of feature 1795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870420 of field osm_id of feature 1797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870421 of field osm_id of feature 1799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870422 of field osm_id of feature 1801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870423 of field osm_id of feature 1803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870423 of field osm_id of feature 1804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870424 of field osm_id of feature 1806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870425 of field osm_id of feature 1808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870426 of field osm_id of feature 1810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870427 of field osm_id of feature 1812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870428 of field osm_id of feature 1814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870429 of field osm_id of feature 1816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870430 of field osm_id of feature 1818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870431 of field osm_id of feature 1820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870432 of field osm_id of feature 1822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870433 of field osm_id of feature 1824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870434 of field osm_id of feature 1826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870434 of field osm_id of feature 1827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870435 of field osm_id of feature 1829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870436 of field osm_id of feature 1831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870437 of field osm_id of feature 1833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534656817 of field osm_id of feature 1834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870438 of field osm_id of feature 1835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870439 of field osm_id of feature 1837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534656818 of field osm_id of feature 1838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870440 of field osm_id of feature 1839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870441 of field osm_id of feature 1841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870442 of field osm_id of feature 1843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534656820 of field osm_id of feature 1844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870443 of field osm_id of feature 1845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870444 of field osm_id of feature 1847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870445 of field osm_id of feature 1849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870446 of field osm_id of feature 1851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870447 of field osm_id of feature 1853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870448 of field osm_id of feature 1855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870449 of field osm_id of feature 1857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870450 of field osm_id of feature 1859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534657983 of field osm_id of feature 1860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870451 of field osm_id of feature 1861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870451 of field osm_id of feature 1862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870452 of field osm_id of feature 1864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870452 of field osm_id of feature 1865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870453 of field osm_id of feature 1867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870454 of field osm_id of feature 1869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870455 of field osm_id of feature 1871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870456 of field osm_id of feature 1873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870457 of field osm_id of feature 1875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870458 of field osm_id of feature 1877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870459 of field osm_id of feature 1879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870460 of field osm_id of feature 1881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870461 of field osm_id of feature 1883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534658040 of field osm_id of feature 1884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870462 of field osm_id of feature 1885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870463 of field osm_id of feature 1887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534658041 of field osm_id of feature 1888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870464 of field osm_id of feature 1889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870465 of field osm_id of feature 1891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870466 of field osm_id of feature 1893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870467 of field osm_id of feature 1895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870468 of field osm_id of feature 1897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870469 of field osm_id of feature 1899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870470 of field osm_id of feature 1901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870471 of field osm_id of feature 1903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870472 of field osm_id of feature 1905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870473 of field osm_id of feature 1907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870474 of field osm_id of feature 1909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870475 of field osm_id of feature 1911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870476 of field osm_id of feature 1913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512870477 of field osm_id of feature 1915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918000 of field osm_id of feature 1917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918001 of field osm_id of feature 1920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918002 of field osm_id of feature 1923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918003 of field osm_id of feature 1925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918004 of field osm_id of feature 1928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918005 of field osm_id of feature 1930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918006 of field osm_id of feature 1933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918007 of field osm_id of feature 1936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918008 of field osm_id of feature 1938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918009 of field osm_id of feature 1940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918010 of field osm_id of feature 1942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918011 of field osm_id of feature 1944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918012 of field osm_id of feature 1946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918013 of field osm_id of feature 1948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918014 of field osm_id of feature 1950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918015 of field osm_id of feature 1952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918016 of field osm_id of feature 1954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918017 of field osm_id of feature 1957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918019 of field osm_id of feature 1959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534660615 of field osm_id of feature 1960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918022 of field osm_id of feature 1961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918023 of field osm_id of feature 1963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534660616 of field osm_id of feature 1964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918024 of field osm_id of feature 1965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918025 of field osm_id of feature 1967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534660617 of field osm_id of feature 1968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918026 of field osm_id of feature 1969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918027 of field osm_id of feature 1971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534660618 of field osm_id of feature 1972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918028 of field osm_id of feature 1973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918029 of field osm_id of feature 1975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918030 of field osm_id of feature 1977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918031 of field osm_id of feature 1979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918032 of field osm_id of feature 1981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918033 of field osm_id of feature 1983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918034 of field osm_id of feature 1985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918035 of field osm_id of feature 1987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918038 of field osm_id of feature 1989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918039 of field osm_id of feature 1992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918040 of field osm_id of feature 1994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918045 of field osm_id of feature 1996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918053 of field osm_id of feature 1998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918053 of field osm_id of feature 1999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918057 of field osm_id of feature 2001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918059 of field osm_id of feature 2003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918060 of field osm_id of feature 2005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918061 of field osm_id of feature 2007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918062 of field osm_id of feature 2009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918063 of field osm_id of feature 2011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918064 of field osm_id of feature 2013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918065 of field osm_id of feature 2015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918066 of field osm_id of feature 2017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534665406 of field osm_id of feature 2018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918067 of field osm_id of feature 2019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918068 of field osm_id of feature 2021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534665409 of field osm_id of feature 2022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918069 of field osm_id of feature 2023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918070 of field osm_id of feature 2025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534665412 of field osm_id of feature 2026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918071 of field osm_id of feature 2027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918072 of field osm_id of feature 2030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534665414 of field osm_id of feature 2031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918073 of field osm_id of feature 2032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918074 of field osm_id of feature 2034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918075 of field osm_id of feature 2036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918076 of field osm_id of feature 2038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918077 of field osm_id of feature 2040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918078 of field osm_id of feature 2043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918079 of field osm_id of feature 2045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918080 of field osm_id of feature 2047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918081 of field osm_id of feature 2049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918082 of field osm_id of feature 2051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918083 of field osm_id of feature 2053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918084 of field osm_id of feature 2055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918085 of field osm_id of feature 2057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918086 of field osm_id of feature 2059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918087 of field osm_id of feature 2061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918088 of field osm_id of feature 2063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918089 of field osm_id of feature 2065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918090 of field osm_id of feature 2068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918091 of field osm_id of feature 2070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918092 of field osm_id of feature 2072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918093 of field osm_id of feature 2074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534666319 of field osm_id of feature 2075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918094 of field osm_id of feature 2076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918095 of field osm_id of feature 2078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534666320 of field osm_id of feature 2079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918096 of field osm_id of feature 2080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918098 of field osm_id of feature 2082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534666321 of field osm_id of feature 2083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918099 of field osm_id of feature 2084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918100 of field osm_id of feature 2086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534666322 of field osm_id of feature 2087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918101 of field osm_id of feature 2088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918102 of field osm_id of feature 2090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918103 of field osm_id of feature 2092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918104 of field osm_id of feature 2094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918105 of field osm_id of feature 2096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918106 of field osm_id of feature 2098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918107 of field osm_id of feature 2100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918108 of field osm_id of feature 2102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918109 of field osm_id of feature 2104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918110 of field osm_id of feature 2106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918111 of field osm_id of feature 2108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918112 of field osm_id of feature 2110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918113 of field osm_id of feature 2112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918114 of field osm_id of feature 2114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918115 of field osm_id of feature 2116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918116 of field osm_id of feature 2118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918117 of field osm_id of feature 2120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918118 of field osm_id of feature 2122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918119 of field osm_id of feature 2124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918120 of field osm_id of feature 2126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918121 of field osm_id of feature 2128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918122 of field osm_id of feature 2130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918123 of field osm_id of feature 2132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918124 of field osm_id of feature 2134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918125 of field osm_id of feature 2136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918126 of field osm_id of feature 2139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918127 of field osm_id of feature 2141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918128 of field osm_id of feature 2143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534667810 of field osm_id of feature 2144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918129 of field osm_id of feature 2145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918130 of field osm_id of feature 2147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534667811 of field osm_id of feature 2148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918131 of field osm_id of feature 2149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918132 of field osm_id of feature 2151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918133 of field osm_id of feature 2153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918134 of field osm_id of feature 2155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918135 of field osm_id of feature 2157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918136 of field osm_id of feature 2160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918140 of field osm_id of feature 2163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918141 of field osm_id of feature 2165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918143 of field osm_id of feature 2167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918145 of field osm_id of feature 2169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918146 of field osm_id of feature 2171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918147 of field osm_id of feature 2173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918148 of field osm_id of feature 2175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918149 of field osm_id of feature 2177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918150 of field osm_id of feature 2179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918151 of field osm_id of feature 2181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918152 of field osm_id of feature 2183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534669124 of field osm_id of feature 2184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918153 of field osm_id of feature 2185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918154 of field osm_id of feature 2187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918155 of field osm_id of feature 2189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918156 of field osm_id of feature 2191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918157 of field osm_id of feature 2193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918158 of field osm_id of feature 2196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918159 of field osm_id of feature 2198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918160 of field osm_id of feature 2200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918161 of field osm_id of feature 2202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918162 of field osm_id of feature 2204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918163 of field osm_id of feature 2206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918164 of field osm_id of feature 2208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918165 of field osm_id of feature 2210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534674927 of field osm_id of feature 2211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918166 of field osm_id of feature 2212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918167 of field osm_id of feature 2214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534674928 of field osm_id of feature 2215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918168 of field osm_id of feature 2216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918169 of field osm_id of feature 2218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534674929 of field osm_id of feature 2219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918170 of field osm_id of feature 2220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918171 of field osm_id of feature 2222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534674930 of field osm_id of feature 2223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918172 of field osm_id of feature 2224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918173 of field osm_id of feature 2226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918175 of field osm_id of feature 2228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534675116 of field osm_id of feature 2229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918176 of field osm_id of feature 2230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918177 of field osm_id of feature 2232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534675117 of field osm_id of feature 2233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918178 of field osm_id of feature 2234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918179 of field osm_id of feature 2236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918180 of field osm_id of feature 2238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918181 of field osm_id of feature 2240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918182 of field osm_id of feature 2242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918183 of field osm_id of feature 2244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918184 of field osm_id of feature 2246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918185 of field osm_id of feature 2248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918186 of field osm_id of feature 2250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918188 of field osm_id of feature 2252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918192 of field osm_id of feature 2254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918195 of field osm_id of feature 2256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918198 of field osm_id of feature 2258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918201 of field osm_id of feature 2260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918204 of field osm_id of feature 2262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918206 of field osm_id of feature 2264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918212 of field osm_id of feature 2266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677236 of field osm_id of feature 2267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918217 of field osm_id of feature 2268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918221 of field osm_id of feature 2270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677237 of field osm_id of feature 2271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918225 of field osm_id of feature 2272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918229 of field osm_id of feature 2274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677238 of field osm_id of feature 2275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918232 of field osm_id of feature 2276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918235 of field osm_id of feature 2279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677239 of field osm_id of feature 2280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918236 of field osm_id of feature 2281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918237 of field osm_id of feature 2283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677240 of field osm_id of feature 2284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918238 of field osm_id of feature 2285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918239 of field osm_id of feature 2287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677648 of field osm_id of feature 2288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918240 of field osm_id of feature 2289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918241 of field osm_id of feature 2291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677649 of field osm_id of feature 2292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918242 of field osm_id of feature 2293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918243 of field osm_id of feature 2295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677650 of field osm_id of feature 2296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918244 of field osm_id of feature 2297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918245 of field osm_id of feature 2299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677651 of field osm_id of feature 2300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918247 of field osm_id of feature 2301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918248 of field osm_id of feature 2303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677652 of field osm_id of feature 2304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918249 of field osm_id of feature 2305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918251 of field osm_id of feature 2307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677653 of field osm_id of feature 2308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918252 of field osm_id of feature 2309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918253 of field osm_id of feature 2312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677654 of field osm_id of feature 2313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918254 of field osm_id of feature 2314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918255 of field osm_id of feature 2316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677655 of field osm_id of feature 2317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918256 of field osm_id of feature 2318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918257 of field osm_id of feature 2320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677656 of field osm_id of feature 2321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918259 of field osm_id of feature 2322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512918260 of field osm_id of feature 2324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534677657 of field osm_id of feature 2325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991733 of field osm_id of feature 2326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991734 of field osm_id of feature 2329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991735 of field osm_id of feature 2331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991736 of field osm_id of feature 2333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991737 of field osm_id of feature 2335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991738 of field osm_id of feature 2337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991739 of field osm_id of feature 2339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991740 of field osm_id of feature 2341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991741 of field osm_id of feature 2343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991742 of field osm_id of feature 2345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991743 of field osm_id of feature 2347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991744 of field osm_id of feature 2349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991745 of field osm_id of feature 2351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991746 of field osm_id of feature 2353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991750 of field osm_id of feature 2355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991751 of field osm_id of feature 2357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682567 of field osm_id of feature 2358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991752 of field osm_id of feature 2359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991753 of field osm_id of feature 2361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682569 of field osm_id of feature 2362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991754 of field osm_id of feature 2363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991755 of field osm_id of feature 2365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682571 of field osm_id of feature 2366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991756 of field osm_id of feature 2367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991757 of field osm_id of feature 2369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682574 of field osm_id of feature 2370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991758 of field osm_id of feature 2371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991759 of field osm_id of feature 2373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682576 of field osm_id of feature 2374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991760 of field osm_id of feature 2375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991761 of field osm_id of feature 2377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682577 of field osm_id of feature 2378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991762 of field osm_id of feature 2379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991763 of field osm_id of feature 2381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682579 of field osm_id of feature 2382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991764 of field osm_id of feature 2383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991765 of field osm_id of feature 2385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682580 of field osm_id of feature 2386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991766 of field osm_id of feature 2387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991767 of field osm_id of feature 2389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682582 of field osm_id of feature 2390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991768 of field osm_id of feature 2391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991768 of field osm_id of feature 2392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991769 of field osm_id of feature 2394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534682584 of field osm_id of feature 2395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991770 of field osm_id of feature 2396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991771 of field osm_id of feature 2398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991772 of field osm_id of feature 2400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991774 of field osm_id of feature 2402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991775 of field osm_id of feature 2404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991776 of field osm_id of feature 2406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534685355 of field osm_id of feature 2407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991777 of field osm_id of feature 2408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991778 of field osm_id of feature 2410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991779 of field osm_id of feature 2412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991780 of field osm_id of feature 2414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991781 of field osm_id of feature 2416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991782 of field osm_id of feature 2418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991783 of field osm_id of feature 2420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991785 of field osm_id of feature 2422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991786 of field osm_id of feature 2424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991787 of field osm_id of feature 2426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991788 of field osm_id of feature 2428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991789 of field osm_id of feature 2430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991790 of field osm_id of feature 2432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991791 of field osm_id of feature 2434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991792 of field osm_id of feature 2436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991793 of field osm_id of feature 2438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991794 of field osm_id of feature 2440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991795 of field osm_id of feature 2442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991796 of field osm_id of feature 2444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991797 of field osm_id of feature 2446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991798 of field osm_id of feature 2448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991800 of field osm_id of feature 2450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991801 of field osm_id of feature 2452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991804 of field osm_id of feature 2454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991805 of field osm_id of feature 2456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991806 of field osm_id of feature 2458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991807 of field osm_id of feature 2460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991808 of field osm_id of feature 2462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991809 of field osm_id of feature 2464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991810 of field osm_id of feature 2466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991811 of field osm_id of feature 2468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991812 of field osm_id of feature 2470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991813 of field osm_id of feature 2472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991814 of field osm_id of feature 2475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991815 of field osm_id of feature 2477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991816 of field osm_id of feature 2480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991817 of field osm_id of feature 2482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917211 of field osm_id of feature 2483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991818 of field osm_id of feature 2484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991819 of field osm_id of feature 2486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917212 of field osm_id of feature 2487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991820 of field osm_id of feature 2488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991820 of field osm_id of feature 2489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991821 of field osm_id of feature 2491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917213 of field osm_id of feature 2492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991822 of field osm_id of feature 2493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 512991823 of field osm_id of feature 2495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917214 of field osm_id of feature 2496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 513026558 of field osm_id of feature 2497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917215 of field osm_id of feature 2500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515113756 of field osm_id of feature 2502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534917216 of field osm_id of feature 2503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515113758 of field osm_id of feature 2504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515113759 of field osm_id of feature 2506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534918677 of field osm_id of feature 2507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740361 of field osm_id of feature 2508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740362 of field osm_id of feature 2510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534918678 of field osm_id of feature 2511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740363 of field osm_id of feature 2512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740364 of field osm_id of feature 2515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534918679 of field osm_id of feature 2516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740365 of field osm_id of feature 2517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740366 of field osm_id of feature 2519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534918680 of field osm_id of feature 2520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740367 of field osm_id of feature 2521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740368 of field osm_id of feature 2523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534918681 of field osm_id of feature 2524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740369 of field osm_id of feature 2525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740370 of field osm_id of feature 2527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 515740371 of field osm_id of feature 2529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516177827 of field osm_id of feature 2531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516177827 of field osm_id of feature 2532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516177828 of field osm_id of feature 2534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516321879 of field osm_id of feature 2536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516824970 of field osm_id of feature 2538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516955277 of field osm_id of feature 2540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516955278 of field osm_id of feature 2542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 516955278 of field osm_id of feature 2543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534921246 of field osm_id of feature 2545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534921249 of field osm_id of feature 2547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534921252 of field osm_id of feature 2549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683057 of field osm_id of feature 2554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683058 of field osm_id of feature 2556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683059 of field osm_id of feature 2558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683060 of field osm_id of feature 2560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683061 of field osm_id of feature 2562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534928454 of field osm_id of feature 2563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683062 of field osm_id of feature 2564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683063 of field osm_id of feature 2566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534928457 of field osm_id of feature 2567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534928457 of field osm_id of feature 2568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683064 of field osm_id of feature 2569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683065 of field osm_id of feature 2571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534928459 of field osm_id of feature 2572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534928459 of field osm_id of feature 2573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683066 of field osm_id of feature 2574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518683067 of field osm_id of feature 2577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518809343 of field osm_id of feature 2579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518809344 of field osm_id of feature 2581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518809345 of field osm_id of feature 2583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 518809346 of field osm_id of feature 2585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520005927 of field osm_id of feature 2587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520005928 of field osm_id of feature 2589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520005929 of field osm_id of feature 2591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520148650 of field osm_id of feature 2593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520148651 of field osm_id of feature 2595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520164615 of field osm_id of feature 2597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520164616 of field osm_id of feature 2599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520183000 of field osm_id of feature 2601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520183001 of field osm_id of feature 2603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520183003 of field osm_id of feature 2605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520183004 of field osm_id of feature 2607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520183005 of field osm_id of feature 2609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520475167 of field osm_id of feature 2611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520475168 of field osm_id of feature 2613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520475473 of field osm_id of feature 2615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520475972 of field osm_id of feature 2618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520705354 of field osm_id of feature 2620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 520705355 of field osm_id of feature 2622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522016801 of field osm_id of feature 2624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522016804 of field osm_id of feature 2626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522351086 of field osm_id of feature 2628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522351091 of field osm_id of feature 2630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522351100 of field osm_id of feature 2632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522404890 of field osm_id of feature 2634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522404890 of field osm_id of feature 2635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522494387 of field osm_id of feature 2637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 522494388 of field osm_id of feature 2639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523231281 of field osm_id of feature 2641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523231282 of field osm_id of feature 2643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523302354 of field osm_id of feature 2645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523609245 of field osm_id of feature 2647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523609247 of field osm_id of feature 2649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 523631510 of field osm_id of feature 2651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: One or several characters couldn't be converted correctly from UTF-8 to ISO-8859-1. This warning will not be emitted anymore.GDAL Message 1: Value 523631512 of field osm_id of feature 2653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524257882 of field osm_id of feature 2657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524257883 of field osm_id of feature 2659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524550763 of field osm_id of feature 2665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786398 of field osm_id of feature 2667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786399 of field osm_id of feature 2670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786400 of field osm_id of feature 2672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786401 of field osm_id of feature 2674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786402 of field osm_id of feature 2676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786403 of field osm_id of feature 2678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946511 of field osm_id of feature 2679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786404 of field osm_id of feature 2680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786413 of field osm_id of feature 2682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946512 of field osm_id of feature 2683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786414 of field osm_id of feature 2684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524786421 of field osm_id of feature 2687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946513 of field osm_id of feature 2688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524931219 of field osm_id of feature 2689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 524931220 of field osm_id of feature 2691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946514 of field osm_id of feature 2692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 525790810 of field osm_id of feature 2693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 525986689 of field osm_id of feature 2695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 525986693 of field osm_id of feature 2697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946516 of field osm_id of feature 2698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 525990444 of field osm_id of feature 2699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526020875 of field osm_id of feature 2701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534946517 of field osm_id of feature 2702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526262793 of field osm_id of feature 2703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526293148 of field osm_id of feature 2705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958051 of field osm_id of feature 2706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526293150 of field osm_id of feature 2707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526293154 of field osm_id of feature 2709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958052 of field osm_id of feature 2710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526313804 of field osm_id of feature 2711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526313807 of field osm_id of feature 2713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958053 of field osm_id of feature 2714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526313809 of field osm_id of feature 2715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526318099 of field osm_id of feature 2717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958054 of field osm_id of feature 2718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526321069 of field osm_id of feature 2719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526321071 of field osm_id of feature 2721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958055 of field osm_id of feature 2722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526328254 of field osm_id of feature 2723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526345583 of field osm_id of feature 2725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958056 of field osm_id of feature 2726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526345584 of field osm_id of feature 2727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526345585 of field osm_id of feature 2729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958057 of field osm_id of feature 2730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526495376 of field osm_id of feature 2731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526556737 of field osm_id of feature 2733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958058 of field osm_id of feature 2734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526604363 of field osm_id of feature 2735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526612522 of field osm_id of feature 2737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534958059 of field osm_id of feature 2738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526612523 of field osm_id of feature 2739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526667845 of field osm_id of feature 2741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534966852 of field osm_id of feature 2742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526805581 of field osm_id of feature 2743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526828570 of field osm_id of feature 2745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534966853 of field osm_id of feature 2746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526828571 of field osm_id of feature 2747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 526887917 of field osm_id of feature 2749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534966854 of field osm_id of feature 2750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527442259 of field osm_id of feature 2751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534966855 of field osm_id of feature 2752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527442260 of field osm_id of feature 2753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527589978 of field osm_id of feature 2755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534972813 of field osm_id of feature 2756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527589979 of field osm_id of feature 2757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527607916 of field osm_id of feature 2759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534975189 of field osm_id of feature 2760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527607918 of field osm_id of feature 2761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534975192 of field osm_id of feature 2762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527652003 of field osm_id of feature 2763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527652003 of field osm_id of feature 2764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527652004 of field osm_id of feature 2766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534975195 of field osm_id of feature 2767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527654134 of field osm_id of feature 2768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527657553 of field osm_id of feature 2770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534975197 of field osm_id of feature 2771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527665601 of field osm_id of feature 2772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534975198 of field osm_id of feature 2773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527665610 of field osm_id of feature 2774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527667362 of field osm_id of feature 2776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527677846 of field osm_id of feature 2778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534981970 of field osm_id of feature 2779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527900365 of field osm_id of feature 2780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527900366 of field osm_id of feature 2782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534981971 of field osm_id of feature 2783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527904364 of field osm_id of feature 2784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527904365 of field osm_id of feature 2786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527905815 of field osm_id of feature 2788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527905816 of field osm_id of feature 2791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527910448 of field osm_id of feature 2793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527911778 of field osm_id of feature 2795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527937492 of field osm_id of feature 2797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527937493 of field osm_id of feature 2799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527937494 of field osm_id of feature 2801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527945554 of field osm_id of feature 2803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527947589 of field osm_id of feature 2806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527947590 of field osm_id of feature 2808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527947591 of field osm_id of feature 2810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527947592 of field osm_id of feature 2812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527947593 of field osm_id of feature 2814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527951441 of field osm_id of feature 2816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954344 of field osm_id of feature 2818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954346 of field osm_id of feature 2821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954346 of field osm_id of feature 2822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954643 of field osm_id of feature 2824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954643 of field osm_id of feature 2825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954645 of field osm_id of feature 2827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527954645 of field osm_id of feature 2828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534985185 of field osm_id of feature 2829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 527982856 of field osm_id of feature 2830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528140098 of field osm_id of feature 2832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528169031 of field osm_id of feature 2834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528169032 of field osm_id of feature 2837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528189241 of field osm_id of feature 2840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528204310 of field osm_id of feature 2842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528204861 of field osm_id of feature 2844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528217017 of field osm_id of feature 2846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534992542 of field osm_id of feature 2847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528238740 of field osm_id of feature 2848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528238741 of field osm_id of feature 2851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528238742 of field osm_id of feature 2853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528240340 of field osm_id of feature 2855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528244043 of field osm_id of feature 2857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528248383 of field osm_id of feature 2859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528249750 of field osm_id of feature 2861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528249750 of field osm_id of feature 2862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528263964 of field osm_id of feature 2864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534993644 of field osm_id of feature 2865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528263967 of field osm_id of feature 2866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534994105 of field osm_id of feature 2870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461103 of field osm_id of feature 2872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534994108 of field osm_id of feature 2873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461104 of field osm_id of feature 2874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461106 of field osm_id of feature 2876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534994110 of field osm_id of feature 2877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461107 of field osm_id of feature 2878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461108 of field osm_id of feature 2880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 534994113 of field osm_id of feature 2881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461110 of field osm_id of feature 2882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461114 of field osm_id of feature 2884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461117 of field osm_id of feature 2887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461125 of field osm_id of feature 2890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461127 of field osm_id of feature 2892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461128 of field osm_id of feature 2894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461129 of field osm_id of feature 2896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461130 of field osm_id of feature 2898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461131 of field osm_id of feature 2900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461138 of field osm_id of feature 2902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461139 of field osm_id of feature 2904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461140 of field osm_id of feature 2906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461141 of field osm_id of feature 2908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461142 of field osm_id of feature 2910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461152 of field osm_id of feature 2912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461153 of field osm_id of feature 2914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461154 of field osm_id of feature 2916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461155 of field osm_id of feature 2918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461156 of field osm_id of feature 2920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461160 of field osm_id of feature 2922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461161 of field osm_id of feature 2924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461163 of field osm_id of feature 2926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461166 of field osm_id of feature 2929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461168 of field osm_id of feature 2931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535018508 of field osm_id of feature 2932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461170 of field osm_id of feature 2933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461171 of field osm_id of feature 2935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535018514 of field osm_id of feature 2936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535018514 of field osm_id of feature 2937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461174 of field osm_id of feature 2938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461175 of field osm_id of feature 2940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535018520 of field osm_id of feature 2941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461178 of field osm_id of feature 2942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461179 of field osm_id of feature 2944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528461180 of field osm_id of feature 2946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528501334 of field osm_id of feature 2948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528501335 of field osm_id of feature 2950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528508760 of field osm_id of feature 2952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528511277 of field osm_id of feature 2954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528512446 of field osm_id of feature 2957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535022430 of field osm_id of feature 2958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528515321 of field osm_id of feature 2959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528516914 of field osm_id of feature 2961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535022431 of field osm_id of feature 2962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528516915 of field osm_id of feature 2963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528516916 of field osm_id of feature 2965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528516917 of field osm_id of feature 2967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528519009 of field osm_id of feature 2969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528519010 of field osm_id of feature 2971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528519011 of field osm_id of feature 2973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528519923 of field osm_id of feature 2975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528525986 of field osm_id of feature 2977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528533525 of field osm_id of feature 2979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528537303 of field osm_id of feature 2981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528539591 of field osm_id of feature 2983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528542526 of field osm_id of feature 2985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528542652 of field osm_id of feature 2987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535028673 of field osm_id of feature 2988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528542918 of field osm_id of feature 2989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528543601 of field osm_id of feature 2991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535028674 of field osm_id of feature 2992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528547328 of field osm_id of feature 2993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528554742 of field osm_id of feature 2995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528554745 of field osm_id of feature 2997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528554747 of field osm_id of feature 2999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528559583 of field osm_id of feature 3001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528559769 of field osm_id of feature 3003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528561003 of field osm_id of feature 3005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030441 of field osm_id of feature 3006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528561004 of field osm_id of feature 3007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528561273 of field osm_id of feature 3009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030444 of field osm_id of feature 3010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528564095 of field osm_id of feature 3011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528564097 of field osm_id of feature 3013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030447 of field osm_id of feature 3014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528565768 of field osm_id of feature 3015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528565769 of field osm_id of feature 3017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030450 of field osm_id of feature 3018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567678 of field osm_id of feature 3019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567678 of field osm_id of feature 3020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567679 of field osm_id of feature 3022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567679 of field osm_id of feature 3023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030453 of field osm_id of feature 3024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030453 of field osm_id of feature 3025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567680 of field osm_id of feature 3026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528567681 of field osm_id of feature 3028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528581276 of field osm_id of feature 3030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030458 of field osm_id of feature 3031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528645205 of field osm_id of feature 3032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528657911 of field osm_id of feature 3034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030461 of field osm_id of feature 3035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528658452 of field osm_id of feature 3036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528658453 of field osm_id of feature 3038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030464 of field osm_id of feature 3039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528658870 of field osm_id of feature 3040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528658871 of field osm_id of feature 3042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030467 of field osm_id of feature 3043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528658872 of field osm_id of feature 3044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528719577 of field osm_id of feature 3046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030470 of field osm_id of feature 3047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528720178 of field osm_id of feature 3048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528722219 of field osm_id of feature 3050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535030474 of field osm_id of feature 3051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528722666 of field osm_id of feature 3052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528722668 of field osm_id of feature 3054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528724242 of field osm_id of feature 3056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528724243 of field osm_id of feature 3058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528727450 of field osm_id of feature 3060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528733190 of field osm_id of feature 3062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528733296 of field osm_id of feature 3064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528735307 of field osm_id of feature 3066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528742236 of field osm_id of feature 3068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528750025 of field osm_id of feature 3070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528751763 of field osm_id of feature 3072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528751764 of field osm_id of feature 3074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528752495 of field osm_id of feature 3076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535043915 of field osm_id of feature 3077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528753392 of field osm_id of feature 3078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528754737 of field osm_id of feature 3080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535043917 of field osm_id of feature 3081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528754739 of field osm_id of feature 3082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528755691 of field osm_id of feature 3084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528757007 of field osm_id of feature 3086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528766619 of field osm_id of feature 3088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528766622 of field osm_id of feature 3090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528770389 of field osm_id of feature 3092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813721 of field osm_id of feature 3094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813722 of field osm_id of feature 3096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813723 of field osm_id of feature 3098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813725 of field osm_id of feature 3100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813727 of field osm_id of feature 3102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528813728 of field osm_id of feature 3104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528880455 of field osm_id of feature 3106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535045579 of field osm_id of feature 3107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528884896 of field osm_id of feature 3108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528884897 of field osm_id of feature 3110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528886796 of field osm_id of feature 3112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528886797 of field osm_id of feature 3114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528897519 of field osm_id of feature 3116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528898916 of field osm_id of feature 3118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528898917 of field osm_id of feature 3120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528900129 of field osm_id of feature 3122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528900131 of field osm_id of feature 3124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528900132 of field osm_id of feature 3126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535047684 of field osm_id of feature 3127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528901623 of field osm_id of feature 3128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528901624 of field osm_id of feature 3130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535048098 of field osm_id of feature 3131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528902481 of field osm_id of feature 3132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528904105 of field osm_id of feature 3134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535048099 of field osm_id of feature 3135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528906617 of field osm_id of feature 3136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528931102 of field osm_id of feature 3138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528940887 of field osm_id of feature 3140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528940889 of field osm_id of feature 3142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535049750 of field osm_id of feature 3143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528940890 of field osm_id of feature 3144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528974988 of field osm_id of feature 3146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 528979870 of field osm_id of feature 3148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529527104 of field osm_id of feature 3156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529547683 of field osm_id of feature 3158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529547684 of field osm_id of feature 3160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549235 of field osm_id of feature 3162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549236 of field osm_id of feature 3164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549237 of field osm_id of feature 3166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549238 of field osm_id of feature 3168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549239 of field osm_id of feature 3170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549926 of field osm_id of feature 3172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529549927 of field osm_id of feature 3174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529556435 of field osm_id of feature 3176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529558426 of field osm_id of feature 3178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529558427 of field osm_id of feature 3180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529564523 of field osm_id of feature 3182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529564523 of field osm_id of feature 3183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529567896 of field osm_id of feature 3185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529579780 of field osm_id of feature 3187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529702606 of field osm_id of feature 3189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529702608 of field osm_id of feature 3191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529753897 of field osm_id of feature 3193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529806503 of field osm_id of feature 3195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529806504 of field osm_id of feature 3197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529806505 of field osm_id of feature 3199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535053161 of field osm_id of feature 3200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529807324 of field osm_id of feature 3201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529807325 of field osm_id of feature 3203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535053162 of field osm_id of feature 3204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529809013 of field osm_id of feature 3205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529816509 of field osm_id of feature 3207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535053163 of field osm_id of feature 3208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529881876 of field osm_id of feature 3209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529881877 of field osm_id of feature 3211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529881878 of field osm_id of feature 3213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888767 of field osm_id of feature 3215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888768 of field osm_id of feature 3217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888769 of field osm_id of feature 3219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888770 of field osm_id of feature 3221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888771 of field osm_id of feature 3223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888772 of field osm_id of feature 3225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888773 of field osm_id of feature 3227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888774 of field osm_id of feature 3229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888775 of field osm_id of feature 3231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888776 of field osm_id of feature 3233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 529888777 of field osm_id of feature 3235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530020436 of field osm_id of feature 3237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535287503 of field osm_id of feature 3238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530020440 of field osm_id of feature 3239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530020441 of field osm_id of feature 3241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535287504 of field osm_id of feature 3242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530020442 of field osm_id of feature 3243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530045639 of field osm_id of feature 3245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530045640 of field osm_id of feature 3247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530082729 of field osm_id of feature 3249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530089851 of field osm_id of feature 3252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530089852 of field osm_id of feature 3254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530112118 of field osm_id of feature 3256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530112120 of field osm_id of feature 3258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530117331 of field osm_id of feature 3260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530117332 of field osm_id of feature 3262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530117333 of field osm_id of feature 3265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530117334 of field osm_id of feature 3267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530120241 of field osm_id of feature 3270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530120242 of field osm_id of feature 3272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530120243 of field osm_id of feature 3274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530120244 of field osm_id of feature 3276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530120245 of field osm_id of feature 3278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530126961 of field osm_id of feature 3280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530126962 of field osm_id of feature 3282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127015 of field osm_id of feature 3284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127016 of field osm_id of feature 3286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127017 of field osm_id of feature 3288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127018 of field osm_id of feature 3290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127102 of field osm_id of feature 3292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127103 of field osm_id of feature 3294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127157 of field osm_id of feature 3296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127158 of field osm_id of feature 3298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127159 of field osm_id of feature 3300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535317691 of field osm_id of feature 3301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127160 of field osm_id of feature 3302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127161 of field osm_id of feature 3304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535317692 of field osm_id of feature 3305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127162 of field osm_id of feature 3306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535317693 of field osm_id of feature 3307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127163 of field osm_id of feature 3308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535317694 of field osm_id of feature 3309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127188 of field osm_id of feature 3310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127200 of field osm_id of feature 3312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535317695 of field osm_id of feature 3313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127614 of field osm_id of feature 3314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127615 of field osm_id of feature 3317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127616 of field osm_id of feature 3320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127617 of field osm_id of feature 3322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127669 of field osm_id of feature 3324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127670 of field osm_id of feature 3326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535319680 of field osm_id of feature 3327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127735 of field osm_id of feature 3328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530127736 of field osm_id of feature 3330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535319681 of field osm_id of feature 3331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530128158 of field osm_id of feature 3332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530128159 of field osm_id of feature 3334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535320498 of field osm_id of feature 3335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530132478 of field osm_id of feature 3336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349677 of field osm_id of feature 3338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322258 of field osm_id of feature 3339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349680 of field osm_id of feature 3340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349683 of field osm_id of feature 3342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322259 of field osm_id of feature 3343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349685 of field osm_id of feature 3344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349687 of field osm_id of feature 3346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322260 of field osm_id of feature 3347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530349690 of field osm_id of feature 3348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530360837 of field osm_id of feature 3350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322261 of field osm_id of feature 3351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530360838 of field osm_id of feature 3352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322262 of field osm_id of feature 3353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530362932 of field osm_id of feature 3354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322263 of field osm_id of feature 3355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530428253 of field osm_id of feature 3356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530428257 of field osm_id of feature 3358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322264 of field osm_id of feature 3359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530440704 of field osm_id of feature 3360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530440708 of field osm_id of feature 3362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322265 of field osm_id of feature 3363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530440710 of field osm_id of feature 3364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530587693 of field osm_id of feature 3366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322266 of field osm_id of feature 3367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530587694 of field osm_id of feature 3368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530592474 of field osm_id of feature 3370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322267 of field osm_id of feature 3371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322267 of field osm_id of feature 3372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530595343 of field osm_id of feature 3373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530595344 of field osm_id of feature 3375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322268 of field osm_id of feature 3376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322268 of field osm_id of feature 3377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530595345 of field osm_id of feature 3378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530595346 of field osm_id of feature 3380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322269 of field osm_id of feature 3381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322269 of field osm_id of feature 3382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530596265 of field osm_id of feature 3383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530596267 of field osm_id of feature 3385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322270 of field osm_id of feature 3386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530603213 of field osm_id of feature 3387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530603215 of field osm_id of feature 3389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322271 of field osm_id of feature 3390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530603217 of field osm_id of feature 3391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530603219 of field osm_id of feature 3393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535322272 of field osm_id of feature 3394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530613117 of field osm_id of feature 3395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632221 of field osm_id of feature 3397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632222 of field osm_id of feature 3399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325798 of field osm_id of feature 3400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632223 of field osm_id of feature 3401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632224 of field osm_id of feature 3403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325799 of field osm_id of feature 3404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632225 of field osm_id of feature 3405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632226 of field osm_id of feature 3407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325800 of field osm_id of feature 3408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632230 of field osm_id of feature 3409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632231 of field osm_id of feature 3411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325801 of field osm_id of feature 3412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530632232 of field osm_id of feature 3413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530656471 of field osm_id of feature 3415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325802 of field osm_id of feature 3416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530656472 of field osm_id of feature 3417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530656473 of field osm_id of feature 3419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535325803 of field osm_id of feature 3420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530660264 of field osm_id of feature 3421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530662806 of field osm_id of feature 3423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530662807 of field osm_id of feature 3425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530662808 of field osm_id of feature 3427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530663410 of field osm_id of feature 3430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530663411 of field osm_id of feature 3433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530664299 of field osm_id of feature 3435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530673646 of field osm_id of feature 3438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530736304 of field osm_id of feature 3441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535330947 of field osm_id of feature 3442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530736306 of field osm_id of feature 3443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933326 of field osm_id of feature 3446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535330948 of field osm_id of feature 3447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933327 of field osm_id of feature 3448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933328 of field osm_id of feature 3450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933329 of field osm_id of feature 3452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933330 of field osm_id of feature 3454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933331 of field osm_id of feature 3456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530933331 of field osm_id of feature 3457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530958948 of field osm_id of feature 3459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 530958949 of field osm_id of feature 3461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531198721 of field osm_id of feature 3463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531198722 of field osm_id of feature 3465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531278885 of field osm_id of feature 3467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531278886 of field osm_id of feature 3469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535332766 of field osm_id of feature 3470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531278887 of field osm_id of feature 3471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535333382 of field osm_id of feature 3472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531278888 of field osm_id of feature 3473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535333383 of field osm_id of feature 3474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531280920 of field osm_id of feature 3475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535333386 of field osm_id of feature 3476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531280923 of field osm_id of feature 3477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531299624 of field osm_id of feature 3479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535333387 of field osm_id of feature 3480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531305391 of field osm_id of feature 3481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531305392 of field osm_id of feature 3483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535333388 of field osm_id of feature 3484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531310088 of field osm_id of feature 3485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531310093 of field osm_id of feature 3487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531339201 of field osm_id of feature 3489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531339653 of field osm_id of feature 3491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531339654 of field osm_id of feature 3493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531341516 of field osm_id of feature 3495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531341517 of field osm_id of feature 3497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531344902 of field osm_id of feature 3499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531344903 of field osm_id of feature 3501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531345100 of field osm_id of feature 3503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531345794 of field osm_id of feature 3505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531346012 of field osm_id of feature 3507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531347512 of field osm_id of feature 3509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531347513 of field osm_id of feature 3511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531348500 of field osm_id of feature 3513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531350424 of field osm_id of feature 3515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531350552 of field osm_id of feature 3517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531352625 of field osm_id of feature 3519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531352963 of field osm_id of feature 3521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531458373 of field osm_id of feature 3523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531458374 of field osm_id of feature 3525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531481872 of field osm_id of feature 3527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531482856 of field osm_id of feature 3529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535337736 of field osm_id of feature 3530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531482857 of field osm_id of feature 3531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531486207 of field osm_id of feature 3533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535337737 of field osm_id of feature 3534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489970 of field osm_id of feature 3535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489971 of field osm_id of feature 3537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489972 of field osm_id of feature 3539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489973 of field osm_id of feature 3541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489974 of field osm_id of feature 3543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531489975 of field osm_id of feature 3545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531497189 of field osm_id of feature 3547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531502062 of field osm_id of feature 3549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531502063 of field osm_id of feature 3551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531507870 of field osm_id of feature 3553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531507871 of field osm_id of feature 3555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531545890 of field osm_id of feature 3557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531545891 of field osm_id of feature 3560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531545892 of field osm_id of feature 3562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 531545893 of field osm_id of feature 3564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535344994 of field osm_id of feature 3601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535349227 of field osm_id of feature 3602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535349228 of field osm_id of feature 3603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535356978 of field osm_id of feature 3605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535356979 of field osm_id of feature 3607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535356980 of field osm_id of feature 3609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535356981 of field osm_id of feature 3611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535358676 of field osm_id of feature 3615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359937 of field osm_id of feature 3618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359938 of field osm_id of feature 3620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359941 of field osm_id of feature 3623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359942 of field osm_id of feature 3625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359943 of field osm_id of feature 3627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359944 of field osm_id of feature 3629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359946 of field osm_id of feature 3633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359948 of field osm_id of feature 3636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535359949 of field osm_id of feature 3638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535360571 of field osm_id of feature 3641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532081909 of field osm_id of feature 3643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532337961 of field osm_id of feature 3645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532337962 of field osm_id of feature 3647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535363228 of field osm_id of feature 3648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532337963 of field osm_id of feature 3649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532341007 of field osm_id of feature 3651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535363229 of field osm_id of feature 3652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532345558 of field osm_id of feature 3653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532350680 of field osm_id of feature 3656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535363230 of field osm_id of feature 3657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532350681 of field osm_id of feature 3658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532350682 of field osm_id of feature 3660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535363231 of field osm_id of feature 3661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532351088 of field osm_id of feature 3662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532364691 of field osm_id of feature 3665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535363232 of field osm_id of feature 3666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532406002 of field osm_id of feature 3667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532411632 of field osm_id of feature 3669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532411633 of field osm_id of feature 3671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532415673 of field osm_id of feature 3673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532417788 of field osm_id of feature 3675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532419830 of field osm_id of feature 3677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532419831 of field osm_id of feature 3679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532419832 of field osm_id of feature 3681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532424860 of field osm_id of feature 3683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532424861 of field osm_id of feature 3685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532425500 of field osm_id of feature 3687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532426588 of field osm_id of feature 3689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532426589 of field osm_id of feature 3691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532431020 of field osm_id of feature 3693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532436187 of field osm_id of feature 3695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643952 of field osm_id of feature 3705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643953 of field osm_id of feature 3707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643954 of field osm_id of feature 3709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643955 of field osm_id of feature 3711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643956 of field osm_id of feature 3713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643957 of field osm_id of feature 3715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643958 of field osm_id of feature 3717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532643959 of field osm_id of feature 3719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535366464 of field osm_id of feature 3734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535366465 of field osm_id of feature 3736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535366466 of field osm_id of feature 3738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535366467 of field osm_id of feature 3740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535604972 of field osm_id of feature 3775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535665919 of field osm_id of feature 3781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535665920 of field osm_id of feature 3783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535665921 of field osm_id of feature 3785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535773819 of field osm_id of feature 3786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535773824 of field osm_id of feature 3787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535773831 of field osm_id of feature 3789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535773836 of field osm_id of feature 3791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535779870 of field osm_id of feature 3793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535779871 of field osm_id of feature 3795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535779872 of field osm_id of feature 3797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535780407 of field osm_id of feature 3799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535780409 of field osm_id of feature 3801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 535780410 of field osm_id of feature 3803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039171 of field osm_id of feature 3805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039172 of field osm_id of feature 3807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039173 of field osm_id of feature 3809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039174 of field osm_id of feature 3811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039175 of field osm_id of feature 3813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039176 of field osm_id of feature 3815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039177 of field osm_id of feature 3817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039179 of field osm_id of feature 3819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039182 of field osm_id of feature 3821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039184 of field osm_id of feature 3823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039187 of field osm_id of feature 3824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039190 of field osm_id of feature 3826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039191 of field osm_id of feature 3828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039192 of field osm_id of feature 3830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039193 of field osm_id of feature 3832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039194 of field osm_id of feature 3834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039195 of field osm_id of feature 3836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039196 of field osm_id of feature 3838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039197 of field osm_id of feature 3840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039198 of field osm_id of feature 3842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039199 of field osm_id of feature 3844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039200 of field osm_id of feature 3846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039201 of field osm_id of feature 3848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039202 of field osm_id of feature 3850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039203 of field osm_id of feature 3852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039204 of field osm_id of feature 3854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039205 of field osm_id of feature 3856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039206 of field osm_id of feature 3859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039207 of field osm_id of feature 3861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039208 of field osm_id of feature 3864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039209 of field osm_id of feature 3866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039210 of field osm_id of feature 3868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039211 of field osm_id of feature 3870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039212 of field osm_id of feature 3872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039213 of field osm_id of feature 3874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039214 of field osm_id of feature 3876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039215 of field osm_id of feature 3878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039216 of field osm_id of feature 3880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039217 of field osm_id of feature 3882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039218 of field osm_id of feature 3884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039219 of field osm_id of feature 3886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039220 of field osm_id of feature 3888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039221 of field osm_id of feature 3890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039222 of field osm_id of feature 3892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039223 of field osm_id of feature 3894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039224 of field osm_id of feature 3896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039225 of field osm_id of feature 3898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039226 of field osm_id of feature 3900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039227 of field osm_id of feature 3902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039228 of field osm_id of feature 3904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039229 of field osm_id of feature 3906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039230 of field osm_id of feature 3908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039231 of field osm_id of feature 3910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532971576 of field osm_id of feature 3911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977598 of field osm_id of feature 3913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039232 of field osm_id of feature 3914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977599 of field osm_id of feature 3915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977600 of field osm_id of feature 3917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039233 of field osm_id of feature 3918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977601 of field osm_id of feature 3919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977602 of field osm_id of feature 3921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039234 of field osm_id of feature 3922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977603 of field osm_id of feature 3923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532977604 of field osm_id of feature 3925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039235 of field osm_id of feature 3926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532990228 of field osm_id of feature 3927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 532995264 of field osm_id of feature 3929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039236 of field osm_id of feature 3930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533001614 of field osm_id of feature 3931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533020569 of field osm_id of feature 3933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039237 of field osm_id of feature 3934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533033195 of field osm_id of feature 3935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533033197 of field osm_id of feature 3937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039238 of field osm_id of feature 3938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533040501 of field osm_id of feature 3939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533040502 of field osm_id of feature 3942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039239 of field osm_id of feature 3943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533040504 of field osm_id of feature 3944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039240 of field osm_id of feature 3945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042776 of field osm_id of feature 3946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042777 of field osm_id of feature 3948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042777 of field osm_id of feature 3949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039241 of field osm_id of feature 3950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042799 of field osm_id of feature 3951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042800 of field osm_id of feature 3953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039242 of field osm_id of feature 3954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042801 of field osm_id of feature 3955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042802 of field osm_id of feature 3957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536039243 of field osm_id of feature 3958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042803 of field osm_id of feature 3959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042805 of field osm_id of feature 3961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536096908 of field osm_id of feature 3962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536096908 of field osm_id of feature 3963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042806 of field osm_id of feature 3964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042807 of field osm_id of feature 3966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042808 of field osm_id of feature 3968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533042809 of field osm_id of feature 3970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420695 of field osm_id of feature 3971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533047015 of field osm_id of feature 3972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533053642 of field osm_id of feature 3974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420696 of field osm_id of feature 3975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055054 of field osm_id of feature 3976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055055 of field osm_id of feature 3978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420697 of field osm_id of feature 3979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055057 of field osm_id of feature 3980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055058 of field osm_id of feature 3982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420698 of field osm_id of feature 3983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055059 of field osm_id of feature 3984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055060 of field osm_id of feature 3986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420699 of field osm_id of feature 3987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533055061 of field osm_id of feature 3988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533059007 of field osm_id of feature 3990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420700 of field osm_id of feature 3991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533062070 of field osm_id of feature 3992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533062071 of field osm_id of feature 3994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420701 of field osm_id of feature 3995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533063074 of field osm_id of feature 3996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533063076 of field osm_id of feature 3998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420702 of field osm_id of feature 3999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533063080 of field osm_id of feature 4000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064259 of field osm_id of feature 4002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420703 of field osm_id of feature 4003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064328 of field osm_id of feature 4004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064329 of field osm_id of feature 4006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420704 of field osm_id of feature 4007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064427 of field osm_id of feature 4008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064428 of field osm_id of feature 4010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420705 of field osm_id of feature 4011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533064429 of field osm_id of feature 4012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533065695 of field osm_id of feature 4014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420706 of field osm_id of feature 4015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533066036 of field osm_id of feature 4016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533066037 of field osm_id of feature 4018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420707 of field osm_id of feature 4019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533066085 of field osm_id of feature 4020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533066086 of field osm_id of feature 4022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420708 of field osm_id of feature 4023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533076263 of field osm_id of feature 4024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533076266 of field osm_id of feature 4026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420709 of field osm_id of feature 4027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533079246 of field osm_id of feature 4028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533079247 of field osm_id of feature 4030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420710 of field osm_id of feature 4031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533079249 of field osm_id of feature 4032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533192591 of field osm_id of feature 4034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420711 of field osm_id of feature 4035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533196355 of field osm_id of feature 4036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533196355 of field osm_id of feature 4037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533204674 of field osm_id of feature 4039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420712 of field osm_id of feature 4040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533210379 of field osm_id of feature 4041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533210380 of field osm_id of feature 4043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420713 of field osm_id of feature 4044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533210382 of field osm_id of feature 4045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533210384 of field osm_id of feature 4047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420714 of field osm_id of feature 4048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533210386 of field osm_id of feature 4049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533216810 of field osm_id of feature 4051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420715 of field osm_id of feature 4052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533216811 of field osm_id of feature 4053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533223885 of field osm_id of feature 4055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420716 of field osm_id of feature 4056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533223886 of field osm_id of feature 4057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533223887 of field osm_id of feature 4059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420717 of field osm_id of feature 4060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533225503 of field osm_id of feature 4061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533225504 of field osm_id of feature 4063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420718 of field osm_id of feature 4064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533225505 of field osm_id of feature 4065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533228116 of field osm_id of feature 4067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420719 of field osm_id of feature 4068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533228117 of field osm_id of feature 4069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533232557 of field osm_id of feature 4071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420720 of field osm_id of feature 4072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533232558 of field osm_id of feature 4073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533232559 of field osm_id of feature 4075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420721 of field osm_id of feature 4076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533257454 of field osm_id of feature 4077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533257455 of field osm_id of feature 4079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533257455 of field osm_id of feature 4080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420722 of field osm_id of feature 4081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533266753 of field osm_id of feature 4082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533266753 of field osm_id of feature 4083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533268134 of field osm_id of feature 4085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420723 of field osm_id of feature 4086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533268135 of field osm_id of feature 4087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533269493 of field osm_id of feature 4089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420724 of field osm_id of feature 4090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533275794 of field osm_id of feature 4091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533283452 of field osm_id of feature 4093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420725 of field osm_id of feature 4094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533400944 of field osm_id of feature 4095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533406847 of field osm_id of feature 4097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420726 of field osm_id of feature 4098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533407738 of field osm_id of feature 4099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533411060 of field osm_id of feature 4101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420727 of field osm_id of feature 4102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420727 of field osm_id of feature 4103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533412847 of field osm_id of feature 4104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533412848 of field osm_id of feature 4106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420728 of field osm_id of feature 4107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533417988 of field osm_id of feature 4108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533417989 of field osm_id of feature 4110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420729 of field osm_id of feature 4111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420729 of field osm_id of feature 4112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533417990 of field osm_id of feature 4113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533458503 of field osm_id of feature 4116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420730 of field osm_id of feature 4117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533458505 of field osm_id of feature 4118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533458507 of field osm_id of feature 4120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420731 of field osm_id of feature 4121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533459353 of field osm_id of feature 4122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533463193 of field osm_id of feature 4124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420732 of field osm_id of feature 4125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533463813 of field osm_id of feature 4126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533464771 of field osm_id of feature 4128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420733 of field osm_id of feature 4129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533471633 of field osm_id of feature 4130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533471634 of field osm_id of feature 4132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536420734 of field osm_id of feature 4133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533471643 of field osm_id of feature 4134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533472705 of field osm_id of feature 4136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536423088 of field osm_id of feature 4137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533472706 of field osm_id of feature 4138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533472707 of field osm_id of feature 4140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536423090 of field osm_id of feature 4141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533472708 of field osm_id of feature 4142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533473510 of field osm_id of feature 4144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536423093 of field osm_id of feature 4145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533475854 of field osm_id of feature 4146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478874 of field osm_id of feature 4148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536423096 of field osm_id of feature 4149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478875 of field osm_id of feature 4150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478903 of field osm_id of feature 4152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536423100 of field osm_id of feature 4153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478904 of field osm_id of feature 4154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478905 of field osm_id of feature 4156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533478906 of field osm_id of feature 4158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533480214 of field osm_id of feature 4159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533483218 of field osm_id of feature 4161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533483311 of field osm_id of feature 4163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533484180 of field osm_id of feature 4165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533485052 of field osm_id of feature 4167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533485053 of field osm_id of feature 4169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533485329 of field osm_id of feature 4171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533485362 of field osm_id of feature 4173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533606972 of field osm_id of feature 4175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533607852 of field osm_id of feature 4177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533607854 of field osm_id of feature 4179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533607856 of field osm_id of feature 4181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533607859 of field osm_id of feature 4183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533607860 of field osm_id of feature 4185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533609252 of field osm_id of feature 4187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533609253 of field osm_id of feature 4189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533609254 of field osm_id of feature 4191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533612238 of field osm_id of feature 4193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533619643 of field osm_id of feature 4195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533619647 of field osm_id of feature 4197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533619651 of field osm_id of feature 4199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533619654 of field osm_id of feature 4201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533623713 of field osm_id of feature 4203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533627295 of field osm_id of feature 4205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533627296 of field osm_id of feature 4207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533627297 of field osm_id of feature 4209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533628376 of field osm_id of feature 4211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533628805 of field osm_id of feature 4213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533628809 of field osm_id of feature 4215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533628811 of field osm_id of feature 4217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533630219 of field osm_id of feature 4219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533637085 of field osm_id of feature 4221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533637086 of field osm_id of feature 4223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533637087 of field osm_id of feature 4225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533637323 of field osm_id of feature 4227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533637324 of field osm_id of feature 4229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640184 of field osm_id of feature 4231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640816 of field osm_id of feature 4233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640817 of field osm_id of feature 4235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640818 of field osm_id of feature 4237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640819 of field osm_id of feature 4239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640820 of field osm_id of feature 4241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640821 of field osm_id of feature 4243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640822 of field osm_id of feature 4245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640823 of field osm_id of feature 4247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640824 of field osm_id of feature 4249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640825 of field osm_id of feature 4251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640826 of field osm_id of feature 4253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533640827 of field osm_id of feature 4255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533643310 of field osm_id of feature 4257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533643311 of field osm_id of feature 4259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533643598 of field osm_id of feature 4261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533645711 of field osm_id of feature 4263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533648478 of field osm_id of feature 4265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533650271 of field osm_id of feature 4267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533650274 of field osm_id of feature 4269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533652228 of field osm_id of feature 4271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533670247 of field osm_id of feature 4273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533670248 of field osm_id of feature 4275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673231 of field osm_id of feature 4277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673232 of field osm_id of feature 4279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626218 of field osm_id of feature 4280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673233 of field osm_id of feature 4281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673234 of field osm_id of feature 4283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626219 of field osm_id of feature 4284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673235 of field osm_id of feature 4285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533673236 of field osm_id of feature 4287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626220 of field osm_id of feature 4288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533676536 of field osm_id of feature 4289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533677572 of field osm_id of feature 4291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626221 of field osm_id of feature 4292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533677854 of field osm_id of feature 4293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533684476 of field osm_id of feature 4295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626222 of field osm_id of feature 4296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685152 of field osm_id of feature 4297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685153 of field osm_id of feature 4299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685153 of field osm_id of feature 4300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626223 of field osm_id of feature 4301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685154 of field osm_id of feature 4302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685902 of field osm_id of feature 4304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626224 of field osm_id of feature 4305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685903 of field osm_id of feature 4306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685904 of field osm_id of feature 4308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626225 of field osm_id of feature 4309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533685905 of field osm_id of feature 4310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533686219 of field osm_id of feature 4312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626226 of field osm_id of feature 4313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533686220 of field osm_id of feature 4314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533687363 of field osm_id of feature 4316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626227 of field osm_id of feature 4317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533687366 of field osm_id of feature 4318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533687370 of field osm_id of feature 4320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626228 of field osm_id of feature 4321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533696151 of field osm_id of feature 4322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533800665 of field osm_id of feature 4324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626229 of field osm_id of feature 4325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626229 of field osm_id of feature 4326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533803201 of field osm_id of feature 4327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533803202 of field osm_id of feature 4329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626230 of field osm_id of feature 4330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533816653 of field osm_id of feature 4331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533816654 of field osm_id of feature 4333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626231 of field osm_id of feature 4334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533816655 of field osm_id of feature 4335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533816656 of field osm_id of feature 4337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626232 of field osm_id of feature 4338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533816657 of field osm_id of feature 4339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533821480 of field osm_id of feature 4341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626233 of field osm_id of feature 4342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533821481 of field osm_id of feature 4343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533821482 of field osm_id of feature 4345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626234 of field osm_id of feature 4346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533821483 of field osm_id of feature 4347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626235 of field osm_id of feature 4348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626235 of field osm_id of feature 4349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533822796 of field osm_id of feature 4350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533822797 of field osm_id of feature 4352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626238 of field osm_id of feature 4353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626238 of field osm_id of feature 4354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533822798 of field osm_id of feature 4355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626240 of field osm_id of feature 4356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533824258 of field osm_id of feature 4357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533825752 of field osm_id of feature 4359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533825752 of field osm_id of feature 4360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626241 of field osm_id of feature 4361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533827643 of field osm_id of feature 4362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626242 of field osm_id of feature 4363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533828784 of field osm_id of feature 4364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533828785 of field osm_id of feature 4366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626243 of field osm_id of feature 4367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 533829293 of field osm_id of feature 4368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626244 of field osm_id of feature 4370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626245 of field osm_id of feature 4372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626246 of field osm_id of feature 4375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626247 of field osm_id of feature 4377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626248 of field osm_id of feature 4379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626249 of field osm_id of feature 4381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626250 of field osm_id of feature 4383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626251 of field osm_id of feature 4385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626252 of field osm_id of feature 4387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626253 of field osm_id of feature 4389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626254 of field osm_id of feature 4391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626255 of field osm_id of feature 4393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626256 of field osm_id of feature 4395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626257 of field osm_id of feature 4397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626258 of field osm_id of feature 4399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626259 of field osm_id of feature 4401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626260 of field osm_id of feature 4403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626261 of field osm_id of feature 4405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626262 of field osm_id of feature 4407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626263 of field osm_id of feature 4409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626264 of field osm_id of feature 4411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626265 of field osm_id of feature 4413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626266 of field osm_id of feature 4415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626268 of field osm_id of feature 4416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626270 of field osm_id of feature 4417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626271 of field osm_id of feature 4419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626272 of field osm_id of feature 4421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626273 of field osm_id of feature 4423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626274 of field osm_id of feature 4425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626275 of field osm_id of feature 4427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626276 of field osm_id of feature 4429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626277 of field osm_id of feature 4431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626278 of field osm_id of feature 4433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626279 of field osm_id of feature 4435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626280 of field osm_id of feature 4437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626281 of field osm_id of feature 4439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626282 of field osm_id of feature 4441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626283 of field osm_id of feature 4443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626284 of field osm_id of feature 4445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626285 of field osm_id of feature 4447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626286 of field osm_id of feature 4449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626287 of field osm_id of feature 4451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626288 of field osm_id of feature 4453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626289 of field osm_id of feature 4455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626290 of field osm_id of feature 4457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626291 of field osm_id of feature 4459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626292 of field osm_id of feature 4461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626293 of field osm_id of feature 4463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626295 of field osm_id of feature 4465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626296 of field osm_id of feature 4467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626297 of field osm_id of feature 4469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626298 of field osm_id of feature 4471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626299 of field osm_id of feature 4473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626300 of field osm_id of feature 4475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626301 of field osm_id of feature 4477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626302 of field osm_id of feature 4478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626303 of field osm_id of feature 4479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626304 of field osm_id of feature 4480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626305 of field osm_id of feature 4481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626306 of field osm_id of feature 4482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626307 of field osm_id of feature 4483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626308 of field osm_id of feature 4484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626309 of field osm_id of feature 4485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626309 of field osm_id of feature 4486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626310 of field osm_id of feature 4487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626310 of field osm_id of feature 4488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626311 of field osm_id of feature 4490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536626311 of field osm_id of feature 4491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536636033 of field osm_id of feature 4493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536636037 of field osm_id of feature 4495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536636040 of field osm_id of feature 4497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536636043 of field osm_id of feature 4499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536636046 of field osm_id of feature 4501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655800 of field osm_id of feature 4509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655802 of field osm_id of feature 4511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655804 of field osm_id of feature 4513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655805 of field osm_id of feature 4515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655806 of field osm_id of feature 4517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655807 of field osm_id of feature 4518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655808 of field osm_id of feature 4519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655809 of field osm_id of feature 4520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655810 of field osm_id of feature 4521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655811 of field osm_id of feature 4523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655812 of field osm_id of feature 4525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655814 of field osm_id of feature 4527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655815 of field osm_id of feature 4530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655816 of field osm_id of feature 4532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655817 of field osm_id of feature 4534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655818 of field osm_id of feature 4536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655819 of field osm_id of feature 4537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655820 of field osm_id of feature 4539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655821 of field osm_id of feature 4541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655822 of field osm_id of feature 4543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655823 of field osm_id of feature 4545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655824 of field osm_id of feature 4547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655825 of field osm_id of feature 4549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655826 of field osm_id of feature 4551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655827 of field osm_id of feature 4553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655828 of field osm_id of feature 4555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655829 of field osm_id of feature 4557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655830 of field osm_id of feature 4559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655831 of field osm_id of feature 4561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655832 of field osm_id of feature 4563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655832 of field osm_id of feature 4564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655833 of field osm_id of feature 4566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655834 of field osm_id of feature 4568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655834 of field osm_id of feature 4569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655835 of field osm_id of feature 4571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655836 of field osm_id of feature 4573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655837 of field osm_id of feature 4575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655838 of field osm_id of feature 4577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655839 of field osm_id of feature 4579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655840 of field osm_id of feature 4581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655841 of field osm_id of feature 4583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655842 of field osm_id of feature 4585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655843 of field osm_id of feature 4587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655844 of field osm_id of feature 4589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655845 of field osm_id of feature 4591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655846 of field osm_id of feature 4593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655847 of field osm_id of feature 4595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655848 of field osm_id of feature 4597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655849 of field osm_id of feature 4599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655850 of field osm_id of feature 4601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655851 of field osm_id of feature 4603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655852 of field osm_id of feature 4605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655853 of field osm_id of feature 4607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655854 of field osm_id of feature 4609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655855 of field osm_id of feature 4611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655856 of field osm_id of feature 4613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655857 of field osm_id of feature 4615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655858 of field osm_id of feature 4617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655859 of field osm_id of feature 4619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655860 of field osm_id of feature 4621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655861 of field osm_id of feature 4623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655862 of field osm_id of feature 4625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655863 of field osm_id of feature 4627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655864 of field osm_id of feature 4629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655865 of field osm_id of feature 4631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655866 of field osm_id of feature 4633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655867 of field osm_id of feature 4635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655868 of field osm_id of feature 4637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655869 of field osm_id of feature 4639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655870 of field osm_id of feature 4641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655871 of field osm_id of feature 4643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655872 of field osm_id of feature 4645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655873 of field osm_id of feature 4647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655874 of field osm_id of feature 4649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655875 of field osm_id of feature 4651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655876 of field osm_id of feature 4653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655877 of field osm_id of feature 4655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655878 of field osm_id of feature 4657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655879 of field osm_id of feature 4659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655880 of field osm_id of feature 4661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655881 of field osm_id of feature 4663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655882 of field osm_id of feature 4665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655883 of field osm_id of feature 4667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655884 of field osm_id of feature 4669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655885 of field osm_id of feature 4671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655886 of field osm_id of feature 4673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655887 of field osm_id of feature 4675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655888 of field osm_id of feature 4677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655889 of field osm_id of feature 4679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655890 of field osm_id of feature 4681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655891 of field osm_id of feature 4683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655892 of field osm_id of feature 4685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655894 of field osm_id of feature 4687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655896 of field osm_id of feature 4689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655899 of field osm_id of feature 4691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655900 of field osm_id of feature 4693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655901 of field osm_id of feature 4695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655902 of field osm_id of feature 4697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655903 of field osm_id of feature 4699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655904 of field osm_id of feature 4701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655905 of field osm_id of feature 4703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655906 of field osm_id of feature 4705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655906 of field osm_id of feature 4706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655907 of field osm_id of feature 4707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655908 of field osm_id of feature 4709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655909 of field osm_id of feature 4711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655910 of field osm_id of feature 4713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655911 of field osm_id of feature 4715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655912 of field osm_id of feature 4716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655913 of field osm_id of feature 4718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655914 of field osm_id of feature 4719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655915 of field osm_id of feature 4720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655916 of field osm_id of feature 4721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655917 of field osm_id of feature 4722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655918 of field osm_id of feature 4723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655919 of field osm_id of feature 4724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536655920 of field osm_id of feature 4725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661768 of field osm_id of feature 4726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661769 of field osm_id of feature 4728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661770 of field osm_id of feature 4730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661771 of field osm_id of feature 4732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661772 of field osm_id of feature 4734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661773 of field osm_id of feature 4736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661774 of field osm_id of feature 4738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661774 of field osm_id of feature 4739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661776 of field osm_id of feature 4741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661777 of field osm_id of feature 4743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661778 of field osm_id of feature 4745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661779 of field osm_id of feature 4747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661780 of field osm_id of feature 4749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661781 of field osm_id of feature 4751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661783 of field osm_id of feature 4753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661786 of field osm_id of feature 4755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661786 of field osm_id of feature 4756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661789 of field osm_id of feature 4758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661790 of field osm_id of feature 4760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661791 of field osm_id of feature 4762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661792 of field osm_id of feature 4764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661793 of field osm_id of feature 4766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661794 of field osm_id of feature 4768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661798 of field osm_id of feature 4770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661803 of field osm_id of feature 4772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661806 of field osm_id of feature 4774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661810 of field osm_id of feature 4776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661814 of field osm_id of feature 4778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661818 of field osm_id of feature 4780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661822 of field osm_id of feature 4782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661825 of field osm_id of feature 4784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661828 of field osm_id of feature 4786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661831 of field osm_id of feature 4788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661833 of field osm_id of feature 4790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661834 of field osm_id of feature 4792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661836 of field osm_id of feature 4795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661837 of field osm_id of feature 4797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661838 of field osm_id of feature 4799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661839 of field osm_id of feature 4801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661840 of field osm_id of feature 4803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661841 of field osm_id of feature 4805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661842 of field osm_id of feature 4807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661843 of field osm_id of feature 4809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661844 of field osm_id of feature 4811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661845 of field osm_id of feature 4813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536661846 of field osm_id of feature 4815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908831 of field osm_id of feature 4817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908832 of field osm_id of feature 4819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908833 of field osm_id of feature 4821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908834 of field osm_id of feature 4823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908835 of field osm_id of feature 4825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908836 of field osm_id of feature 4827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908837 of field osm_id of feature 4829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908838 of field osm_id of feature 4831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908839 of field osm_id of feature 4833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908840 of field osm_id of feature 4835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908841 of field osm_id of feature 4837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908842 of field osm_id of feature 4839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908843 of field osm_id of feature 4841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908844 of field osm_id of feature 4843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908845 of field osm_id of feature 4845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908846 of field osm_id of feature 4847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908847 of field osm_id of feature 4849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908848 of field osm_id of feature 4851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908849 of field osm_id of feature 4853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908850 of field osm_id of feature 4855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908851 of field osm_id of feature 4857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908852 of field osm_id of feature 4859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908854 of field osm_id of feature 4861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908855 of field osm_id of feature 4863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908856 of field osm_id of feature 4865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908857 of field osm_id of feature 4867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908858 of field osm_id of feature 4869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908859 of field osm_id of feature 4871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908860 of field osm_id of feature 4873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908861 of field osm_id of feature 4875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908862 of field osm_id of feature 4877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908863 of field osm_id of feature 4879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908864 of field osm_id of feature 4881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908865 of field osm_id of feature 4883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908867 of field osm_id of feature 4885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908869 of field osm_id of feature 4887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908870 of field osm_id of feature 4889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908871 of field osm_id of feature 4891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908872 of field osm_id of feature 4893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908873 of field osm_id of feature 4895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908874 of field osm_id of feature 4897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908875 of field osm_id of feature 4899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908876 of field osm_id of feature 4901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908877 of field osm_id of feature 4903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908878 of field osm_id of feature 4905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908879 of field osm_id of feature 4907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908880 of field osm_id of feature 4909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908881 of field osm_id of feature 4911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908882 of field osm_id of feature 4913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908883 of field osm_id of feature 4914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908884 of field osm_id of feature 4916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908886 of field osm_id of feature 4918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908887 of field osm_id of feature 4920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908888 of field osm_id of feature 4922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908889 of field osm_id of feature 4924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908890 of field osm_id of feature 4926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908891 of field osm_id of feature 4928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908892 of field osm_id of feature 4930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908893 of field osm_id of feature 4932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908894 of field osm_id of feature 4934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908895 of field osm_id of feature 4936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908896 of field osm_id of feature 4938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908897 of field osm_id of feature 4939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908898 of field osm_id of feature 4940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908898 of field osm_id of feature 4941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908899 of field osm_id of feature 4942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908900 of field osm_id of feature 4943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908901 of field osm_id of feature 4944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908902 of field osm_id of feature 4945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908903 of field osm_id of feature 4946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908905 of field osm_id of feature 4947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908906 of field osm_id of feature 4948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908907 of field osm_id of feature 4949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908908 of field osm_id of feature 4950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908909 of field osm_id of feature 4951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908910 of field osm_id of feature 4952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908911 of field osm_id of feature 4954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908912 of field osm_id of feature 4956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908913 of field osm_id of feature 4958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908914 of field osm_id of feature 4960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908916 of field osm_id of feature 4962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908919 of field osm_id of feature 4964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908922 of field osm_id of feature 4966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908925 of field osm_id of feature 4968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908929 of field osm_id of feature 4969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908932 of field osm_id of feature 4970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908936 of field osm_id of feature 4971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908939 of field osm_id of feature 4972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908943 of field osm_id of feature 4973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908947 of field osm_id of feature 4974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908950 of field osm_id of feature 4976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908953 of field osm_id of feature 4978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908957 of field osm_id of feature 4980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908960 of field osm_id of feature 4982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908963 of field osm_id of feature 4984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908967 of field osm_id of feature 4986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908970 of field osm_id of feature 4988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908973 of field osm_id of feature 4990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908976 of field osm_id of feature 4992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908979 of field osm_id of feature 4994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536908982 of field osm_id of feature 4996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913656 of field osm_id of feature 4998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913657 of field osm_id of feature 5000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913658 of field osm_id of feature 5002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913659 of field osm_id of feature 5004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913660 of field osm_id of feature 5006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913661 of field osm_id of feature 5008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913662 of field osm_id of feature 5010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913663 of field osm_id of feature 5012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913664 of field osm_id of feature 5014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913665 of field osm_id of feature 5016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913666 of field osm_id of feature 5018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913667 of field osm_id of feature 5020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913668 of field osm_id of feature 5021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913669 of field osm_id of feature 5022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913670 of field osm_id of feature 5023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913671 of field osm_id of feature 5024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913672 of field osm_id of feature 5025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913673 of field osm_id of feature 5026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913674 of field osm_id of feature 5028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913675 of field osm_id of feature 5030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913677 of field osm_id of feature 5032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913680 of field osm_id of feature 5034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913682 of field osm_id of feature 5036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913683 of field osm_id of feature 5038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913684 of field osm_id of feature 5040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913685 of field osm_id of feature 5042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913686 of field osm_id of feature 5044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913687 of field osm_id of feature 5046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913688 of field osm_id of feature 5048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913689 of field osm_id of feature 5050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913690 of field osm_id of feature 5052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913691 of field osm_id of feature 5054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913692 of field osm_id of feature 5056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913693 of field osm_id of feature 5058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913694 of field osm_id of feature 5060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913695 of field osm_id of feature 5062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913696 of field osm_id of feature 5064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913697 of field osm_id of feature 5066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913698 of field osm_id of feature 5068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913699 of field osm_id of feature 5070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913700 of field osm_id of feature 5072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913701 of field osm_id of feature 5074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913702 of field osm_id of feature 5075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913703 of field osm_id of feature 5077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913704 of field osm_id of feature 5078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913705 of field osm_id of feature 5080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913706 of field osm_id of feature 5082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913707 of field osm_id of feature 5083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913708 of field osm_id of feature 5085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913709 of field osm_id of feature 5087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913709 of field osm_id of feature 5088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913710 of field osm_id of feature 5089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913711 of field osm_id of feature 5090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913712 of field osm_id of feature 5091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913713 of field osm_id of feature 5092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913714 of field osm_id of feature 5093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913715 of field osm_id of feature 5094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913716 of field osm_id of feature 5095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536913717 of field osm_id of feature 5096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536917080 of field osm_id of feature 5097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536917080 of field osm_id of feature 5098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536917081 of field osm_id of feature 5099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536917082 of field osm_id of feature 5100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536917083 of field osm_id of feature 5101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925681 of field osm_id of feature 5102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925682 of field osm_id of feature 5103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925683 of field osm_id of feature 5105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925684 of field osm_id of feature 5107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925685 of field osm_id of feature 5108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925686 of field osm_id of feature 5110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925687 of field osm_id of feature 5112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925688 of field osm_id of feature 5113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925689 of field osm_id of feature 5115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925690 of field osm_id of feature 5116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925691 of field osm_id of feature 5117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925692 of field osm_id of feature 5118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925693 of field osm_id of feature 5120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925694 of field osm_id of feature 5122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925695 of field osm_id of feature 5124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925696 of field osm_id of feature 5125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925697 of field osm_id of feature 5126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925698 of field osm_id of feature 5127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925699 of field osm_id of feature 5128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925700 of field osm_id of feature 5129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925701 of field osm_id of feature 5131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925703 of field osm_id of feature 5132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925705 of field osm_id of feature 5134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925706 of field osm_id of feature 5136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925708 of field osm_id of feature 5138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925709 of field osm_id of feature 5140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925711 of field osm_id of feature 5142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925712 of field osm_id of feature 5144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925714 of field osm_id of feature 5146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925715 of field osm_id of feature 5148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925716 of field osm_id of feature 5150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925718 of field osm_id of feature 5152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925719 of field osm_id of feature 5154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925720 of field osm_id of feature 5155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925722 of field osm_id of feature 5157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925723 of field osm_id of feature 5159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925724 of field osm_id of feature 5161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925726 of field osm_id of feature 5162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925727 of field osm_id of feature 5164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925729 of field osm_id of feature 5165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925730 of field osm_id of feature 5167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925732 of field osm_id of feature 5169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925733 of field osm_id of feature 5171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925735 of field osm_id of feature 5173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925736 of field osm_id of feature 5175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925738 of field osm_id of feature 5177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925739 of field osm_id of feature 5179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925741 of field osm_id of feature 5181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925742 of field osm_id of feature 5183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925744 of field osm_id of feature 5184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925745 of field osm_id of feature 5185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925746 of field osm_id of feature 5186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925748 of field osm_id of feature 5188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925749 of field osm_id of feature 5190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925751 of field osm_id of feature 5192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925752 of field osm_id of feature 5194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925754 of field osm_id of feature 5196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925755 of field osm_id of feature 5198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925757 of field osm_id of feature 5200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925758 of field osm_id of feature 5202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925760 of field osm_id of feature 5204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925761 of field osm_id of feature 5206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925762 of field osm_id of feature 5208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925764 of field osm_id of feature 5210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925765 of field osm_id of feature 5212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925767 of field osm_id of feature 5214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925769 of field osm_id of feature 5216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925770 of field osm_id of feature 5218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925772 of field osm_id of feature 5220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925773 of field osm_id of feature 5222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925775 of field osm_id of feature 5223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925776 of field osm_id of feature 5225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925778 of field osm_id of feature 5227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925780 of field osm_id of feature 5229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925781 of field osm_id of feature 5231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925783 of field osm_id of feature 5233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925784 of field osm_id of feature 5235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925786 of field osm_id of feature 5237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925787 of field osm_id of feature 5239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925789 of field osm_id of feature 5241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925791 of field osm_id of feature 5243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925792 of field osm_id of feature 5245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925796 of field osm_id of feature 5247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925800 of field osm_id of feature 5249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925805 of field osm_id of feature 5251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925811 of field osm_id of feature 5253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925815 of field osm_id of feature 5255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925820 of field osm_id of feature 5257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925826 of field osm_id of feature 5259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925833 of field osm_id of feature 5261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925839 of field osm_id of feature 5263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925843 of field osm_id of feature 5265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925848 of field osm_id of feature 5267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925853 of field osm_id of feature 5269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925857 of field osm_id of feature 5271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925857 of field osm_id of feature 5272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925862 of field osm_id of feature 5274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925866 of field osm_id of feature 5276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925866 of field osm_id of feature 5277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925871 of field osm_id of feature 5279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925876 of field osm_id of feature 5280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925880 of field osm_id of feature 5281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925885 of field osm_id of feature 5283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925889 of field osm_id of feature 5285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536925895 of field osm_id of feature 5287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935729 of field osm_id of feature 5289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935730 of field osm_id of feature 5291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935731 of field osm_id of feature 5293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935732 of field osm_id of feature 5295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935733 of field osm_id of feature 5297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935734 of field osm_id of feature 5299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935735 of field osm_id of feature 5301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935736 of field osm_id of feature 5307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935737 of field osm_id of feature 5309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935738 of field osm_id of feature 5311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935739 of field osm_id of feature 5313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935740 of field osm_id of feature 5315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935741 of field osm_id of feature 5317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935742 of field osm_id of feature 5319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935742 of field osm_id of feature 5320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935743 of field osm_id of feature 5322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935744 of field osm_id of feature 5324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935745 of field osm_id of feature 5326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935746 of field osm_id of feature 5328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935747 of field osm_id of feature 5330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935748 of field osm_id of feature 5332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935748 of field osm_id of feature 5333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935749 of field osm_id of feature 5335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935749 of field osm_id of feature 5336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935750 of field osm_id of feature 5338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536935752 of field osm_id of feature 5340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536981002 of field osm_id of feature 5344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536981004 of field osm_id of feature 5347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536982024 of field osm_id of feature 5348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 536982254 of field osm_id of feature 5350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033763 of field osm_id of feature 5352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033764 of field osm_id of feature 5354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033765 of field osm_id of feature 5356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033766 of field osm_id of feature 5358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033767 of field osm_id of feature 5359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033768 of field osm_id of feature 5361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033769 of field osm_id of feature 5363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033770 of field osm_id of feature 5365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033771 of field osm_id of feature 5367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033772 of field osm_id of feature 5369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033773 of field osm_id of feature 5371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033774 of field osm_id of feature 5373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033775 of field osm_id of feature 5375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033776 of field osm_id of feature 5376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033776 of field osm_id of feature 5377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033777 of field osm_id of feature 5379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033778 of field osm_id of feature 5381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033779 of field osm_id of feature 5383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033780 of field osm_id of feature 5385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033781 of field osm_id of feature 5387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033782 of field osm_id of feature 5389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537033786 of field osm_id of feature 5391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041145 of field osm_id of feature 5393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041146 of field osm_id of feature 5395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041147 of field osm_id of feature 5397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041148 of field osm_id of feature 5399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041149 of field osm_id of feature 5401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041150 of field osm_id of feature 5403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041151 of field osm_id of feature 5405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537041152 of field osm_id of feature 5407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045023 of field osm_id of feature 5409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045024 of field osm_id of feature 5411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045025 of field osm_id of feature 5413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045026 of field osm_id of feature 5415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045027 of field osm_id of feature 5417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045028 of field osm_id of feature 5419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045029 of field osm_id of feature 5421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045030 of field osm_id of feature 5423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045031 of field osm_id of feature 5425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045032 of field osm_id of feature 5427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045033 of field osm_id of feature 5429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045034 of field osm_id of feature 5431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045035 of field osm_id of feature 5433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045036 of field osm_id of feature 5435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045037 of field osm_id of feature 5437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045038 of field osm_id of feature 5439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045039 of field osm_id of feature 5441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045040 of field osm_id of feature 5443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045041 of field osm_id of feature 5445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045042 of field osm_id of feature 5447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045043 of field osm_id of feature 5449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045044 of field osm_id of feature 5451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045045 of field osm_id of feature 5453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045046 of field osm_id of feature 5455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045047 of field osm_id of feature 5457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045048 of field osm_id of feature 5459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045049 of field osm_id of feature 5461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045049 of field osm_id of feature 5462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045050 of field osm_id of feature 5463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045051 of field osm_id of feature 5465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045051 of field osm_id of feature 5466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045052 of field osm_id of feature 5468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045053 of field osm_id of feature 5470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045054 of field osm_id of feature 5472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045054 of field osm_id of feature 5473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045055 of field osm_id of feature 5474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045056 of field osm_id of feature 5476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045056 of field osm_id of feature 5477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045057 of field osm_id of feature 5479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045058 of field osm_id of feature 5481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045059 of field osm_id of feature 5483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045060 of field osm_id of feature 5485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045061 of field osm_id of feature 5487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045062 of field osm_id of feature 5489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045063 of field osm_id of feature 5491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045064 of field osm_id of feature 5493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045065 of field osm_id of feature 5495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045066 of field osm_id of feature 5497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045067 of field osm_id of feature 5499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045068 of field osm_id of feature 5500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045069 of field osm_id of feature 5501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045070 of field osm_id of feature 5502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537045071 of field osm_id of feature 5503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062174 of field osm_id of feature 5505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062176 of field osm_id of feature 5506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062179 of field osm_id of feature 5507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062180 of field osm_id of feature 5508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062181 of field osm_id of feature 5509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062182 of field osm_id of feature 5510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062183 of field osm_id of feature 5511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062184 of field osm_id of feature 5513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062185 of field osm_id of feature 5515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062186 of field osm_id of feature 5518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062187 of field osm_id of feature 5519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062189 of field osm_id of feature 5521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062190 of field osm_id of feature 5523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062191 of field osm_id of feature 5525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062192 of field osm_id of feature 5527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062193 of field osm_id of feature 5529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537062194 of field osm_id of feature 5531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537067344 of field osm_id of feature 5533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069587 of field osm_id of feature 5535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069588 of field osm_id of feature 5537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069590 of field osm_id of feature 5540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069591 of field osm_id of feature 5542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069592 of field osm_id of feature 5544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537069593 of field osm_id of feature 5546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537070028 of field osm_id of feature 5548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537070029 of field osm_id of feature 5550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537070030 of field osm_id of feature 5551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537070031 of field osm_id of feature 5552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071039 of field osm_id of feature 5553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071042 of field osm_id of feature 5555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071045 of field osm_id of feature 5557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071048 of field osm_id of feature 5559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071052 of field osm_id of feature 5561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071196 of field osm_id of feature 5563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071197 of field osm_id of feature 5565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071198 of field osm_id of feature 5567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071199 of field osm_id of feature 5570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071200 of field osm_id of feature 5572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071201 of field osm_id of feature 5574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071202 of field osm_id of feature 5576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537071203 of field osm_id of feature 5578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072444 of field osm_id of feature 5580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072445 of field osm_id of feature 5582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072446 of field osm_id of feature 5585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072447 of field osm_id of feature 5587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072448 of field osm_id of feature 5590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072449 of field osm_id of feature 5592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072450 of field osm_id of feature 5594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072451 of field osm_id of feature 5596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072452 of field osm_id of feature 5598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072453 of field osm_id of feature 5600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072454 of field osm_id of feature 5603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072455 of field osm_id of feature 5605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072456 of field osm_id of feature 5607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072457 of field osm_id of feature 5609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072458 of field osm_id of feature 5611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072459 of field osm_id of feature 5613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072460 of field osm_id of feature 5615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072461 of field osm_id of feature 5616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072462 of field osm_id of feature 5618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072463 of field osm_id of feature 5620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537072464 of field osm_id of feature 5622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537077056 of field osm_id of feature 5624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537077057 of field osm_id of feature 5626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079529 of field osm_id of feature 5628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079530 of field osm_id of feature 5630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079531 of field osm_id of feature 5633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079532 of field osm_id of feature 5635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079533 of field osm_id of feature 5637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537079534 of field osm_id of feature 5639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082838 of field osm_id of feature 5641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082839 of field osm_id of feature 5643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082840 of field osm_id of feature 5644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082841 of field osm_id of feature 5646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082842 of field osm_id of feature 5647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082843 of field osm_id of feature 5649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082843 of field osm_id of feature 5650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082844 of field osm_id of feature 5652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082844 of field osm_id of feature 5653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082845 of field osm_id of feature 5656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082846 of field osm_id of feature 5658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082847 of field osm_id of feature 5660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082848 of field osm_id of feature 5662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082849 of field osm_id of feature 5663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082849 of field osm_id of feature 5664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082850 of field osm_id of feature 5665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082851 of field osm_id of feature 5667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082851 of field osm_id of feature 5668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082852 of field osm_id of feature 5670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082853 of field osm_id of feature 5672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082854 of field osm_id of feature 5674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082855 of field osm_id of feature 5675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082856 of field osm_id of feature 5678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082857 of field osm_id of feature 5680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082860 of field osm_id of feature 5682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082862 of field osm_id of feature 5684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082866 of field osm_id of feature 5685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082870 of field osm_id of feature 5686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082873 of field osm_id of feature 5687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082876 of field osm_id of feature 5688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082881 of field osm_id of feature 5689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082889 of field osm_id of feature 5690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082891 of field osm_id of feature 5692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082892 of field osm_id of feature 5693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082893 of field osm_id of feature 5694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082894 of field osm_id of feature 5695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537082895 of field osm_id of feature 5696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537085236 of field osm_id of feature 5697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537085237 of field osm_id of feature 5700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537085238 of field osm_id of feature 5702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088398 of field osm_id of feature 5704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088399 of field osm_id of feature 5706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088400 of field osm_id of feature 5708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088401 of field osm_id of feature 5710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088402 of field osm_id of feature 5712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088403 of field osm_id of feature 5714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088404 of field osm_id of feature 5716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088405 of field osm_id of feature 5718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088406 of field osm_id of feature 5720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088407 of field osm_id of feature 5722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088408 of field osm_id of feature 5724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088409 of field osm_id of feature 5726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088410 of field osm_id of feature 5728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088411 of field osm_id of feature 5730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088413 of field osm_id of feature 5732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088416 of field osm_id of feature 5734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088419 of field osm_id of feature 5736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088420 of field osm_id of feature 5737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088421 of field osm_id of feature 5738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088422 of field osm_id of feature 5739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088423 of field osm_id of feature 5741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088424 of field osm_id of feature 5743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088425 of field osm_id of feature 5745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088426 of field osm_id of feature 5747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088427 of field osm_id of feature 5748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088430 of field osm_id of feature 5749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088432 of field osm_id of feature 5750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088434 of field osm_id of feature 5751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088437 of field osm_id of feature 5752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088439 of field osm_id of feature 5753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088443 of field osm_id of feature 5755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088446 of field osm_id of feature 5757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088448 of field osm_id of feature 5759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088451 of field osm_id of feature 5762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088454 of field osm_id of feature 5764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088457 of field osm_id of feature 5765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088460 of field osm_id of feature 5766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088462 of field osm_id of feature 5767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088465 of field osm_id of feature 5769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088469 of field osm_id of feature 5771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088472 of field osm_id of feature 5772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088477 of field osm_id of feature 5774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088479 of field osm_id of feature 5776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088480 of field osm_id of feature 5778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088481 of field osm_id of feature 5780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088482 of field osm_id of feature 5781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088483 of field osm_id of feature 5782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088484 of field osm_id of feature 5783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088485 of field osm_id of feature 5785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088486 of field osm_id of feature 5788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088487 of field osm_id of feature 5791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088488 of field osm_id of feature 5793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537088489 of field osm_id of feature 5795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120320 of field osm_id of feature 5797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120321 of field osm_id of feature 5799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120322 of field osm_id of feature 5801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120323 of field osm_id of feature 5803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120324 of field osm_id of feature 5805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120325 of field osm_id of feature 5807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120326 of field osm_id of feature 5809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120327 of field osm_id of feature 5810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120328 of field osm_id of feature 5811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120329 of field osm_id of feature 5813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120330 of field osm_id of feature 5815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120331 of field osm_id of feature 5817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120332 of field osm_id of feature 5820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120333 of field osm_id of feature 5822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120334 of field osm_id of feature 5824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120335 of field osm_id of feature 5826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120336 of field osm_id of feature 5828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120337 of field osm_id of feature 5830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120338 of field osm_id of feature 5833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120339 of field osm_id of feature 5835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537120340 of field osm_id of feature 5836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127380 of field osm_id of feature 5837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127383 of field osm_id of feature 5838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127387 of field osm_id of feature 5839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127390 of field osm_id of feature 5840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127392 of field osm_id of feature 5842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127394 of field osm_id of feature 5844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127397 of field osm_id of feature 5845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127400 of field osm_id of feature 5846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127402 of field osm_id of feature 5848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127404 of field osm_id of feature 5850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127407 of field osm_id of feature 5852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127409 of field osm_id of feature 5854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127411 of field osm_id of feature 5857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127413 of field osm_id of feature 5859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127416 of field osm_id of feature 5861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127419 of field osm_id of feature 5863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127421 of field osm_id of feature 5865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127424 of field osm_id of feature 5867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127426 of field osm_id of feature 5868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127428 of field osm_id of feature 5869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127428 of field osm_id of feature 5870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127430 of field osm_id of feature 5871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127433 of field osm_id of feature 5873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127436 of field osm_id of feature 5875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127438 of field osm_id of feature 5877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127441 of field osm_id of feature 5879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127443 of field osm_id of feature 5881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127446 of field osm_id of feature 5883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127448 of field osm_id of feature 5885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127450 of field osm_id of feature 5887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127452 of field osm_id of feature 5888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127455 of field osm_id of feature 5889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537127458 of field osm_id of feature 5890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537143052 of field osm_id of feature 5892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537143053 of field osm_id of feature 5894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146043 of field osm_id of feature 5897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146045 of field osm_id of feature 5899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146046 of field osm_id of feature 5901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146047 of field osm_id of feature 5902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146048 of field osm_id of feature 5904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146049 of field osm_id of feature 5905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146050 of field osm_id of feature 5907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146051 of field osm_id of feature 5909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146052 of field osm_id of feature 5911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146053 of field osm_id of feature 5914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146054 of field osm_id of feature 5916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146055 of field osm_id of feature 5918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146056 of field osm_id of feature 5920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146057 of field osm_id of feature 5922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537146058 of field osm_id of feature 5925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148245 of field osm_id of feature 5928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148248 of field osm_id of feature 5930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148250 of field osm_id of feature 5932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148252 of field osm_id of feature 5934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148259 of field osm_id of feature 5936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537148261 of field osm_id of feature 5938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537152227 of field osm_id of feature 5940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156675 of field osm_id of feature 5942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156676 of field osm_id of feature 5944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156677 of field osm_id of feature 5946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156678 of field osm_id of feature 5948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156679 of field osm_id of feature 5949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156680 of field osm_id of feature 5951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156681 of field osm_id of feature 5953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156682 of field osm_id of feature 5955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156683 of field osm_id of feature 5957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156684 of field osm_id of feature 5959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156685 of field osm_id of feature 5961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156686 of field osm_id of feature 5963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156687 of field osm_id of feature 5964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156688 of field osm_id of feature 5966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156689 of field osm_id of feature 5968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537156690 of field osm_id of feature 5970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159962 of field osm_id of feature 5972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159963 of field osm_id of feature 5974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159964 of field osm_id of feature 5976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159965 of field osm_id of feature 5978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159966 of field osm_id of feature 5980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159967 of field osm_id of feature 5981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159968 of field osm_id of feature 5982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159969 of field osm_id of feature 5983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159970 of field osm_id of feature 5984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159971 of field osm_id of feature 5986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159972 of field osm_id of feature 5988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159973 of field osm_id of feature 5989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159974 of field osm_id of feature 5990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159975 of field osm_id of feature 5991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159976 of field osm_id of feature 5992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159977 of field osm_id of feature 5993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159978 of field osm_id of feature 5995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159979 of field osm_id of feature 5997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159980 of field osm_id of feature 5999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159982 of field osm_id of feature 6001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159983 of field osm_id of feature 6003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159985 of field osm_id of feature 6004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159988 of field osm_id of feature 6006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159990 of field osm_id of feature 6008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159993 of field osm_id of feature 6010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159994 of field osm_id of feature 6012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159995 of field osm_id of feature 6014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159996 of field osm_id of feature 6016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159997 of field osm_id of feature 6017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537159999 of field osm_id of feature 6018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160000 of field osm_id of feature 6020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160001 of field osm_id of feature 6022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160002 of field osm_id of feature 6024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160003 of field osm_id of feature 6026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160004 of field osm_id of feature 6028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160005 of field osm_id of feature 6030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160006 of field osm_id of feature 6032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160007 of field osm_id of feature 6034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160008 of field osm_id of feature 6037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160009 of field osm_id of feature 6040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160010 of field osm_id of feature 6042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160012 of field osm_id of feature 6046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160014 of field osm_id of feature 6049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160017 of field osm_id of feature 6051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160019 of field osm_id of feature 6053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160020 of field osm_id of feature 6055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160021 of field osm_id of feature 6057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160022 of field osm_id of feature 6059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537160023 of field osm_id of feature 6061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161538 of field osm_id of feature 6063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161541 of field osm_id of feature 6065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161544 of field osm_id of feature 6067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161547 of field osm_id of feature 6069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161550 of field osm_id of feature 6071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161554 of field osm_id of feature 6073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161558 of field osm_id of feature 6075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161560 of field osm_id of feature 6078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161563 of field osm_id of feature 6080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161567 of field osm_id of feature 6082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161570 of field osm_id of feature 6084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161574 of field osm_id of feature 6086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161577 of field osm_id of feature 6088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161581 of field osm_id of feature 6090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161584 of field osm_id of feature 6092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161585 of field osm_id of feature 6094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161586 of field osm_id of feature 6096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161587 of field osm_id of feature 6098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161588 of field osm_id of feature 6100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161590 of field osm_id of feature 6102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161591 of field osm_id of feature 6104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161593 of field osm_id of feature 6106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161594 of field osm_id of feature 6108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161595 of field osm_id of feature 6110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161596 of field osm_id of feature 6112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161597 of field osm_id of feature 6114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161598 of field osm_id of feature 6116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161599 of field osm_id of feature 6118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161600 of field osm_id of feature 6120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161601 of field osm_id of feature 6122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161602 of field osm_id of feature 6124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161603 of field osm_id of feature 6126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161604 of field osm_id of feature 6128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161605 of field osm_id of feature 6130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161606 of field osm_id of feature 6132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161607 of field osm_id of feature 6134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161608 of field osm_id of feature 6136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161609 of field osm_id of feature 6138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161610 of field osm_id of feature 6140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161611 of field osm_id of feature 6142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161612 of field osm_id of feature 6144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161613 of field osm_id of feature 6146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161614 of field osm_id of feature 6148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537161615 of field osm_id of feature 6150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537225421 of field osm_id of feature 6165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349324 of field osm_id of feature 6301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349325 of field osm_id of feature 6303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349326 of field osm_id of feature 6305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349327 of field osm_id of feature 6307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349328 of field osm_id of feature 6309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349329 of field osm_id of feature 6311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349330 of field osm_id of feature 6313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349331 of field osm_id of feature 6315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349332 of field osm_id of feature 6317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349333 of field osm_id of feature 6319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349334 of field osm_id of feature 6321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349335 of field osm_id of feature 6323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349336 of field osm_id of feature 6325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349338 of field osm_id of feature 6327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349339 of field osm_id of feature 6329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349340 of field osm_id of feature 6331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349341 of field osm_id of feature 6333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349343 of field osm_id of feature 6335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349344 of field osm_id of feature 6337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349345 of field osm_id of feature 6339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349346 of field osm_id of feature 6341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349347 of field osm_id of feature 6343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349348 of field osm_id of feature 6345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349349 of field osm_id of feature 6346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349350 of field osm_id of feature 6347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349351 of field osm_id of feature 6349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349352 of field osm_id of feature 6351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349353 of field osm_id of feature 6353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349354 of field osm_id of feature 6354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349355 of field osm_id of feature 6355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349356 of field osm_id of feature 6357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349356 of field osm_id of feature 6358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349357 of field osm_id of feature 6360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349358 of field osm_id of feature 6362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349359 of field osm_id of feature 6365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349360 of field osm_id of feature 6367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349363 of field osm_id of feature 6369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349363 of field osm_id of feature 6370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349365 of field osm_id of feature 6372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349365 of field osm_id of feature 6373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349366 of field osm_id of feature 6375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349367 of field osm_id of feature 6377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349368 of field osm_id of feature 6379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349369 of field osm_id of feature 6381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349370 of field osm_id of feature 6383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349371 of field osm_id of feature 6385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349372 of field osm_id of feature 6387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349373 of field osm_id of feature 6389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349374 of field osm_id of feature 6391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349375 of field osm_id of feature 6393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349376 of field osm_id of feature 6395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349377 of field osm_id of feature 6397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349378 of field osm_id of feature 6399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349379 of field osm_id of feature 6401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349380 of field osm_id of feature 6403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349381 of field osm_id of feature 6405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349384 of field osm_id of feature 6407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349386 of field osm_id of feature 6409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349387 of field osm_id of feature 6411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349388 of field osm_id of feature 6413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349389 of field osm_id of feature 6415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349390 of field osm_id of feature 6417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349390 of field osm_id of feature 6418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349391 of field osm_id of feature 6420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349391 of field osm_id of feature 6421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349392 of field osm_id of feature 6423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349393 of field osm_id of feature 6425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349394 of field osm_id of feature 6427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349396 of field osm_id of feature 6429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349396 of field osm_id of feature 6430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349397 of field osm_id of feature 6432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349399 of field osm_id of feature 6434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349402 of field osm_id of feature 6436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349402 of field osm_id of feature 6437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349404 of field osm_id of feature 6438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349405 of field osm_id of feature 6439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349407 of field osm_id of feature 6441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349409 of field osm_id of feature 6443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349413 of field osm_id of feature 6445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349417 of field osm_id of feature 6447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349420 of field osm_id of feature 6449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349423 of field osm_id of feature 6451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349425 of field osm_id of feature 6453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349426 of field osm_id of feature 6455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349427 of field osm_id of feature 6457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349429 of field osm_id of feature 6459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349430 of field osm_id of feature 6461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349431 of field osm_id of feature 6463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349432 of field osm_id of feature 6465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349433 of field osm_id of feature 6467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349434 of field osm_id of feature 6468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349435 of field osm_id of feature 6469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349436 of field osm_id of feature 6470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349437 of field osm_id of feature 6471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349438 of field osm_id of feature 6472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349439 of field osm_id of feature 6474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349440 of field osm_id of feature 6476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349442 of field osm_id of feature 6477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349443 of field osm_id of feature 6478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349444 of field osm_id of feature 6479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349445 of field osm_id of feature 6481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349446 of field osm_id of feature 6483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349447 of field osm_id of feature 6484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349448 of field osm_id of feature 6485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349449 of field osm_id of feature 6488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349450 of field osm_id of feature 6490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349451 of field osm_id of feature 6491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349452 of field osm_id of feature 6493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349453 of field osm_id of feature 6495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349453 of field osm_id of feature 6496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349455 of field osm_id of feature 6498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349456 of field osm_id of feature 6500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349457 of field osm_id of feature 6502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349458 of field osm_id of feature 6504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349458 of field osm_id of feature 6505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349459 of field osm_id of feature 6507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349460 of field osm_id of feature 6509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349461 of field osm_id of feature 6511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349462 of field osm_id of feature 6513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349463 of field osm_id of feature 6515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349464 of field osm_id of feature 6517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349465 of field osm_id of feature 6518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349466 of field osm_id of feature 6519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349467 of field osm_id of feature 6521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349468 of field osm_id of feature 6522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349469 of field osm_id of feature 6523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349470 of field osm_id of feature 6524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349471 of field osm_id of feature 6525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349473 of field osm_id of feature 6526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349474 of field osm_id of feature 6527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349475 of field osm_id of feature 6528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349476 of field osm_id of feature 6530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349477 of field osm_id of feature 6532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349478 of field osm_id of feature 6534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349479 of field osm_id of feature 6536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349481 of field osm_id of feature 6538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349482 of field osm_id of feature 6540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537349483 of field osm_id of feature 6542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537364165 of field osm_id of feature 6547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537364166 of field osm_id of feature 6549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537364167 of field osm_id of feature 6551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537364168 of field osm_id of feature 6553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537364169 of field osm_id of feature 6555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537368058 of field osm_id of feature 6557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537368059 of field osm_id of feature 6559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395705 of field osm_id of feature 6561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395706 of field osm_id of feature 6563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395707 of field osm_id of feature 6565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395708 of field osm_id of feature 6567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395709 of field osm_id of feature 6569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395710 of field osm_id of feature 6571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395711 of field osm_id of feature 6573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395712 of field osm_id of feature 6575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395713 of field osm_id of feature 6577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395714 of field osm_id of feature 6579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395715 of field osm_id of feature 6581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395716 of field osm_id of feature 6583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395717 of field osm_id of feature 6585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537395718 of field osm_id of feature 6587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537400016 of field osm_id of feature 6590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537400017 of field osm_id of feature 6592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537400022 of field osm_id of feature 6598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537400023 of field osm_id of feature 6600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537400604 of field osm_id of feature 6602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537401722 of field osm_id of feature 6604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537401723 of field osm_id of feature 6606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537405521 of field osm_id of feature 6608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537405523 of field osm_id of feature 6610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409558 of field osm_id of feature 6612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409559 of field osm_id of feature 6614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409560 of field osm_id of feature 6616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409561 of field osm_id of feature 6618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409562 of field osm_id of feature 6620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409563 of field osm_id of feature 6622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409564 of field osm_id of feature 6624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409565 of field osm_id of feature 6626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409566 of field osm_id of feature 6628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409566 of field osm_id of feature 6629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409567 of field osm_id of feature 6631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409568 of field osm_id of feature 6633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409568 of field osm_id of feature 6634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409569 of field osm_id of feature 6636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409570 of field osm_id of feature 6638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409571 of field osm_id of feature 6640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409572 of field osm_id of feature 6642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409573 of field osm_id of feature 6644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409574 of field osm_id of feature 6646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409575 of field osm_id of feature 6648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537409576 of field osm_id of feature 6650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431143 of field osm_id of feature 6652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431144 of field osm_id of feature 6654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431146 of field osm_id of feature 6656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431148 of field osm_id of feature 6658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431149 of field osm_id of feature 6660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431149 of field osm_id of feature 6661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431150 of field osm_id of feature 6663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431150 of field osm_id of feature 6664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431151 of field osm_id of feature 6666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431152 of field osm_id of feature 6668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537431153 of field osm_id of feature 6670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445928 of field osm_id of feature 6672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445929 of field osm_id of feature 6674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445930 of field osm_id of feature 6676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445931 of field osm_id of feature 6678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445932 of field osm_id of feature 6680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445933 of field osm_id of feature 6682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445934 of field osm_id of feature 6684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445935 of field osm_id of feature 6686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445936 of field osm_id of feature 6688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445937 of field osm_id of feature 6690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445938 of field osm_id of feature 6692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445939 of field osm_id of feature 6694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445940 of field osm_id of feature 6696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445941 of field osm_id of feature 6698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445942 of field osm_id of feature 6700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445943 of field osm_id of feature 6702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445944 of field osm_id of feature 6704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445945 of field osm_id of feature 6706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537445946 of field osm_id of feature 6708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570242 of field osm_id of feature 6746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570243 of field osm_id of feature 6748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570244 of field osm_id of feature 6751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570245 of field osm_id of feature 6753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570246 of field osm_id of feature 6755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570247 of field osm_id of feature 6757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570248 of field osm_id of feature 6759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570249 of field osm_id of feature 6761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570250 of field osm_id of feature 6763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570251 of field osm_id of feature 6765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570252 of field osm_id of feature 6767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570253 of field osm_id of feature 6770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570254 of field osm_id of feature 6773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570255 of field osm_id of feature 6775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570256 of field osm_id of feature 6777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570257 of field osm_id of feature 6779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570258 of field osm_id of feature 6781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570259 of field osm_id of feature 6783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570260 of field osm_id of feature 6785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570261 of field osm_id of feature 6787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570262 of field osm_id of feature 6789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570263 of field osm_id of feature 6791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570264 of field osm_id of feature 6793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570265 of field osm_id of feature 6795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570266 of field osm_id of feature 6797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570267 of field osm_id of feature 6799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570268 of field osm_id of feature 6801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570269 of field osm_id of feature 6802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570270 of field osm_id of feature 6803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570271 of field osm_id of feature 6804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570272 of field osm_id of feature 6805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537570273 of field osm_id of feature 6806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537574829 of field osm_id of feature 6807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537574830 of field osm_id of feature 6808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537574831 of field osm_id of feature 6810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579056 of field osm_id of feature 6812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579057 of field osm_id of feature 6814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579058 of field osm_id of feature 6816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579059 of field osm_id of feature 6818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579060 of field osm_id of feature 6820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579061 of field osm_id of feature 6822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579062 of field osm_id of feature 6824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579063 of field osm_id of feature 6826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579064 of field osm_id of feature 6828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579065 of field osm_id of feature 6830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579066 of field osm_id of feature 6831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579067 of field osm_id of feature 6833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579068 of field osm_id of feature 6834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579069 of field osm_id of feature 6835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579070 of field osm_id of feature 6836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579071 of field osm_id of feature 6837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537579072 of field osm_id of feature 6838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636424 of field osm_id of feature 6839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636425 of field osm_id of feature 6841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636426 of field osm_id of feature 6843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636427 of field osm_id of feature 6845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636427 of field osm_id of feature 6846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636428 of field osm_id of feature 6848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636428 of field osm_id of feature 6849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636429 of field osm_id of feature 6850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636430 of field osm_id of feature 6852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636431 of field osm_id of feature 6854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636432 of field osm_id of feature 6856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636433 of field osm_id of feature 6859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636433 of field osm_id of feature 6860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636434 of field osm_id of feature 6862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636435 of field osm_id of feature 6864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636436 of field osm_id of feature 6866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636437 of field osm_id of feature 6868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636438 of field osm_id of feature 6870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636438 of field osm_id of feature 6871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636439 of field osm_id of feature 6872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636440 of field osm_id of feature 6874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636440 of field osm_id of feature 6875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636441 of field osm_id of feature 6877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636442 of field osm_id of feature 6879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636442 of field osm_id of feature 6880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636443 of field osm_id of feature 6882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636444 of field osm_id of feature 6884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636444 of field osm_id of feature 6885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636445 of field osm_id of feature 6887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636446 of field osm_id of feature 6889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636447 of field osm_id of feature 6891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636448 of field osm_id of feature 6893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636449 of field osm_id of feature 6895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636450 of field osm_id of feature 6897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636451 of field osm_id of feature 6899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636452 of field osm_id of feature 6901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636453 of field osm_id of feature 6903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636454 of field osm_id of feature 6905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537636455 of field osm_id of feature 6907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719417 of field osm_id of feature 6909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719418 of field osm_id of feature 6911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719419 of field osm_id of feature 6913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719420 of field osm_id of feature 6915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719421 of field osm_id of feature 6917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719422 of field osm_id of feature 6919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719423 of field osm_id of feature 6921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719424 of field osm_id of feature 6923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719425 of field osm_id of feature 6925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719426 of field osm_id of feature 6927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719427 of field osm_id of feature 6929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719428 of field osm_id of feature 6931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719429 of field osm_id of feature 6933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719430 of field osm_id of feature 6935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719431 of field osm_id of feature 6937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719432 of field osm_id of feature 6938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719432 of field osm_id of feature 6939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719433 of field osm_id of feature 6941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719434 of field osm_id of feature 6943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537719435 of field osm_id of feature 6944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757452 of field osm_id of feature 6946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757453 of field osm_id of feature 6948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757454 of field osm_id of feature 6950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757455 of field osm_id of feature 6952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757456 of field osm_id of feature 6954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757457 of field osm_id of feature 6956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757458 of field osm_id of feature 6958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757459 of field osm_id of feature 6959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757460 of field osm_id of feature 6961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757461 of field osm_id of feature 6964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757462 of field osm_id of feature 6966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757463 of field osm_id of feature 6968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757464 of field osm_id of feature 6970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537757465 of field osm_id of feature 6972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766000 of field osm_id of feature 6974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766001 of field osm_id of feature 6976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766002 of field osm_id of feature 6978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766003 of field osm_id of feature 6980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766004 of field osm_id of feature 6982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766005 of field osm_id of feature 6984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766006 of field osm_id of feature 6986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766007 of field osm_id of feature 6988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766008 of field osm_id of feature 6990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766009 of field osm_id of feature 6992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537766010 of field osm_id of feature 6993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537840916 of field osm_id of feature 6996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537840917 of field osm_id of feature 6998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537842037 of field osm_id of feature 7016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537842038 of field osm_id of feature 7018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537842039 of field osm_id of feature 7020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537842040 of field osm_id of feature 7022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537843497 of field osm_id of feature 7027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537844241 of field osm_id of feature 7029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537873472 of field osm_id of feature 7031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537873474 of field osm_id of feature 7033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537873476 of field osm_id of feature 7035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537909421 of field osm_id of feature 7045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537916781 of field osm_id of feature 7046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537918108 of field osm_id of feature 7047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922251 of field osm_id of feature 7049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922254 of field osm_id of feature 7051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922255 of field osm_id of feature 7053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922256 of field osm_id of feature 7055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922257 of field osm_id of feature 7056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537922258 of field osm_id of feature 7057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925509 of field osm_id of feature 7058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925510 of field osm_id of feature 7059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925511 of field osm_id of feature 7060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925511 of field osm_id of feature 7061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925512 of field osm_id of feature 7062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925512 of field osm_id of feature 7063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925513 of field osm_id of feature 7065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537925514 of field osm_id of feature 7066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926100 of field osm_id of feature 7067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926101 of field osm_id of feature 7069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926102 of field osm_id of feature 7071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926103 of field osm_id of feature 7073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926104 of field osm_id of feature 7075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926105 of field osm_id of feature 7077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926838 of field osm_id of feature 7078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926839 of field osm_id of feature 7080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926840 of field osm_id of feature 7082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926841 of field osm_id of feature 7084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926842 of field osm_id of feature 7086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926843 of field osm_id of feature 7088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926844 of field osm_id of feature 7090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926845 of field osm_id of feature 7092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926846 of field osm_id of feature 7094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926847 of field osm_id of feature 7096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537926848 of field osm_id of feature 7099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928294 of field osm_id of feature 7102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928294 of field osm_id of feature 7103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928295 of field osm_id of feature 7105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928297 of field osm_id of feature 7107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928301 of field osm_id of feature 7109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928304 of field osm_id of feature 7112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928307 of field osm_id of feature 7114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928311 of field osm_id of feature 7117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928313 of field osm_id of feature 7119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928314 of field osm_id of feature 7121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537928315 of field osm_id of feature 7123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933583 of field osm_id of feature 7125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933584 of field osm_id of feature 7127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933585 of field osm_id of feature 7129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933586 of field osm_id of feature 7131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933589 of field osm_id of feature 7135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933590 of field osm_id of feature 7137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933591 of field osm_id of feature 7139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933592 of field osm_id of feature 7141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933593 of field osm_id of feature 7143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933594 of field osm_id of feature 7145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933595 of field osm_id of feature 7147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933596 of field osm_id of feature 7149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933597 of field osm_id of feature 7150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933598 of field osm_id of feature 7151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933599 of field osm_id of feature 7152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933600 of field osm_id of feature 7153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933601 of field osm_id of feature 7154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933602 of field osm_id of feature 7155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537933603 of field osm_id of feature 7156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537963713 of field osm_id of feature 7172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537964250 of field osm_id of feature 7174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537964251 of field osm_id of feature 7176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537967364 of field osm_id of feature 7178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975582 of field osm_id of feature 7180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975584 of field osm_id of feature 7182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975587 of field osm_id of feature 7184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975590 of field osm_id of feature 7186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975593 of field osm_id of feature 7188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975596 of field osm_id of feature 7190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975599 of field osm_id of feature 7192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975602 of field osm_id of feature 7194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537975605 of field osm_id of feature 7196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537978706 of field osm_id of feature 7198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537979489 of field osm_id of feature 7200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537979490 of field osm_id of feature 7202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982503 of field osm_id of feature 7204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982504 of field osm_id of feature 7206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982505 of field osm_id of feature 7208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982506 of field osm_id of feature 7210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982507 of field osm_id of feature 7212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537982508 of field osm_id of feature 7214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989237 of field osm_id of feature 7216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989238 of field osm_id of feature 7218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989239 of field osm_id of feature 7220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989240 of field osm_id of feature 7222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989241 of field osm_id of feature 7224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989242 of field osm_id of feature 7226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989242 of field osm_id of feature 7227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989243 of field osm_id of feature 7229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989244 of field osm_id of feature 7231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989245 of field osm_id of feature 7233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989245 of field osm_id of feature 7234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989246 of field osm_id of feature 7236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989246 of field osm_id of feature 7237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989247 of field osm_id of feature 7239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989248 of field osm_id of feature 7241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989249 of field osm_id of feature 7243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989250 of field osm_id of feature 7245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989251 of field osm_id of feature 7247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989252 of field osm_id of feature 7249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537989253 of field osm_id of feature 7251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992907 of field osm_id of feature 7253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992908 of field osm_id of feature 7255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992909 of field osm_id of feature 7257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992910 of field osm_id of feature 7259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992911 of field osm_id of feature 7261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992912 of field osm_id of feature 7263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992913 of field osm_id of feature 7265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992914 of field osm_id of feature 7267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992915 of field osm_id of feature 7269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992917 of field osm_id of feature 7271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992920 of field osm_id of feature 7273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992924 of field osm_id of feature 7275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992927 of field osm_id of feature 7277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992929 of field osm_id of feature 7279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992933 of field osm_id of feature 7281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992936 of field osm_id of feature 7283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992939 of field osm_id of feature 7285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992941 of field osm_id of feature 7287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992943 of field osm_id of feature 7289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992946 of field osm_id of feature 7291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992949 of field osm_id of feature 7293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992952 of field osm_id of feature 7295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992955 of field osm_id of feature 7297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992958 of field osm_id of feature 7299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992961 of field osm_id of feature 7301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992964 of field osm_id of feature 7303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992967 of field osm_id of feature 7305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992970 of field osm_id of feature 7307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992973 of field osm_id of feature 7309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992976 of field osm_id of feature 7311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992978 of field osm_id of feature 7313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992982 of field osm_id of feature 7315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992985 of field osm_id of feature 7317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992989 of field osm_id of feature 7319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992992 of field osm_id of feature 7321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992995 of field osm_id of feature 7323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537992999 of field osm_id of feature 7325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537993003 of field osm_id of feature 7327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537993006 of field osm_id of feature 7329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537993009 of field osm_id of feature 7331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537993012 of field osm_id of feature 7333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537994362 of field osm_id of feature 7335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537994364 of field osm_id of feature 7337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996935 of field osm_id of feature 7339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996935 of field osm_id of feature 7340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996936 of field osm_id of feature 7342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996937 of field osm_id of feature 7344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996938 of field osm_id of feature 7346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996939 of field osm_id of feature 7348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996940 of field osm_id of feature 7350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996941 of field osm_id of feature 7352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996942 of field osm_id of feature 7354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996943 of field osm_id of feature 7356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996944 of field osm_id of feature 7358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996945 of field osm_id of feature 7360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996946 of field osm_id of feature 7362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996947 of field osm_id of feature 7364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996949 of field osm_id of feature 7366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996950 of field osm_id of feature 7368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996951 of field osm_id of feature 7370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996952 of field osm_id of feature 7372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537996953 of field osm_id of feature 7374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537999168 of field osm_id of feature 7376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 537999169 of field osm_id of feature 7378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538007788 of field osm_id of feature 7380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538007791 of field osm_id of feature 7382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538007794 of field osm_id of feature 7384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018148 of field osm_id of feature 7386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018151 of field osm_id of feature 7388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018154 of field osm_id of feature 7390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018156 of field osm_id of feature 7392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018158 of field osm_id of feature 7394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018161 of field osm_id of feature 7396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018165 of field osm_id of feature 7398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018167 of field osm_id of feature 7400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018169 of field osm_id of feature 7402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018172 of field osm_id of feature 7404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018174 of field osm_id of feature 7405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018177 of field osm_id of feature 7407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018180 of field osm_id of feature 7409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018182 of field osm_id of feature 7411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018185 of field osm_id of feature 7413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018187 of field osm_id of feature 7415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018190 of field osm_id of feature 7416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018193 of field osm_id of feature 7418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018196 of field osm_id of feature 7421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018198 of field osm_id of feature 7423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018201 of field osm_id of feature 7425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018203 of field osm_id of feature 7427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018206 of field osm_id of feature 7428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018209 of field osm_id of feature 7430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018211 of field osm_id of feature 7432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018213 of field osm_id of feature 7434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018214 of field osm_id of feature 7436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018217 of field osm_id of feature 7438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018220 of field osm_id of feature 7440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018222 of field osm_id of feature 7442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018225 of field osm_id of feature 7444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018228 of field osm_id of feature 7446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018231 of field osm_id of feature 7448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018234 of field osm_id of feature 7449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018237 of field osm_id of feature 7450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018240 of field osm_id of feature 7451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018242 of field osm_id of feature 7452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018246 of field osm_id of feature 7454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018250 of field osm_id of feature 7456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018255 of field osm_id of feature 7457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018260 of field osm_id of feature 7458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018263 of field osm_id of feature 7459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018267 of field osm_id of feature 7460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018272 of field osm_id of feature 7462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018276 of field osm_id of feature 7464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018281 of field osm_id of feature 7466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018286 of field osm_id of feature 7468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018290 of field osm_id of feature 7470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018295 of field osm_id of feature 7472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018299 of field osm_id of feature 7474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018304 of field osm_id of feature 7476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538018310 of field osm_id of feature 7478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538105768 of field osm_id of feature 7495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186179 of field osm_id of feature 7539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186179 of field osm_id of feature 7540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186180 of field osm_id of feature 7542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186180 of field osm_id of feature 7543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186181 of field osm_id of feature 7545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186181 of field osm_id of feature 7546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186182 of field osm_id of feature 7548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186183 of field osm_id of feature 7550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186184 of field osm_id of feature 7552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186185 of field osm_id of feature 7554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186186 of field osm_id of feature 7556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186187 of field osm_id of feature 7558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186188 of field osm_id of feature 7560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186189 of field osm_id of feature 7563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186190 of field osm_id of feature 7565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186191 of field osm_id of feature 7567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186192 of field osm_id of feature 7570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186193 of field osm_id of feature 7572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186194 of field osm_id of feature 7575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186195 of field osm_id of feature 7577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186196 of field osm_id of feature 7579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186197 of field osm_id of feature 7582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186198 of field osm_id of feature 7584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186199 of field osm_id of feature 7586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186200 of field osm_id of feature 7589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186201 of field osm_id of feature 7591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186202 of field osm_id of feature 7593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186203 of field osm_id of feature 7596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186204 of field osm_id of feature 7598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186205 of field osm_id of feature 7600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186206 of field osm_id of feature 7603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186207 of field osm_id of feature 7605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186208 of field osm_id of feature 7607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186209 of field osm_id of feature 7609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186210 of field osm_id of feature 7612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186211 of field osm_id of feature 7614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186212 of field osm_id of feature 7617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186213 of field osm_id of feature 7619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186214 of field osm_id of feature 7621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186215 of field osm_id of feature 7624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186218 of field osm_id of feature 7626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186221 of field osm_id of feature 7628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538186222 of field osm_id of feature 7630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538204305 of field osm_id of feature 7632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538208753 of field osm_id of feature 7634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538208754 of field osm_id of feature 7636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538208755 of field osm_id of feature 7639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538209847 of field osm_id of feature 7641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538209848 of field osm_id of feature 7643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538209849 of field osm_id of feature 7645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538209850 of field osm_id of feature 7648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210920 of field osm_id of feature 7651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210921 of field osm_id of feature 7653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210922 of field osm_id of feature 7655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210923 of field osm_id of feature 7657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210924 of field osm_id of feature 7661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538210928 of field osm_id of feature 7664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213797 of field osm_id of feature 7666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213801 of field osm_id of feature 7670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213804 of field osm_id of feature 7673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213807 of field osm_id of feature 7675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213810 of field osm_id of feature 7677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213814 of field osm_id of feature 7679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213817 of field osm_id of feature 7681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213820 of field osm_id of feature 7684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213823 of field osm_id of feature 7686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538213827 of field osm_id of feature 7689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223011 of field osm_id of feature 7691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223013 of field osm_id of feature 7693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223017 of field osm_id of feature 7695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223019 of field osm_id of feature 7697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223021 of field osm_id of feature 7699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223023 of field osm_id of feature 7701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223026 of field osm_id of feature 7702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223029 of field osm_id of feature 7704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223031 of field osm_id of feature 7706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223034 of field osm_id of feature 7708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223037 of field osm_id of feature 7710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223039 of field osm_id of feature 7712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223039 of field osm_id of feature 7713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223042 of field osm_id of feature 7715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223044 of field osm_id of feature 7717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223047 of field osm_id of feature 7719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223049 of field osm_id of feature 7720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223051 of field osm_id of feature 7722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223051 of field osm_id of feature 7723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223053 of field osm_id of feature 7725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223055 of field osm_id of feature 7727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223055 of field osm_id of feature 7728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223057 of field osm_id of feature 7730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223060 of field osm_id of feature 7732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223062 of field osm_id of feature 7735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223064 of field osm_id of feature 7737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223066 of field osm_id of feature 7740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223068 of field osm_id of feature 7742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223069 of field osm_id of feature 7744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223070 of field osm_id of feature 7746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538223072 of field osm_id of feature 7748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242193 of field osm_id of feature 7750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242196 of field osm_id of feature 7752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242200 of field osm_id of feature 7754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242203 of field osm_id of feature 7756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242206 of field osm_id of feature 7758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242209 of field osm_id of feature 7760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242212 of field osm_id of feature 7762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242215 of field osm_id of feature 7763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242219 of field osm_id of feature 7764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538242221 of field osm_id of feature 7765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538250697 of field osm_id of feature 7766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538250700 of field osm_id of feature 7767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538260863 of field osm_id of feature 7768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538260866 of field osm_id of feature 7769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538260870 of field osm_id of feature 7771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538260870 of field osm_id of feature 7772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538270318 of field osm_id of feature 7774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538270321 of field osm_id of feature 7775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538270323 of field osm_id of feature 7778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538270326 of field osm_id of feature 7780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538280120 of field osm_id of feature 7782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291714 of field osm_id of feature 7783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291715 of field osm_id of feature 7784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291718 of field osm_id of feature 7785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291720 of field osm_id of feature 7786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291723 of field osm_id of feature 7787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291726 of field osm_id of feature 7789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291729 of field osm_id of feature 7790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291731 of field osm_id of feature 7792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291733 of field osm_id of feature 7795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291736 of field osm_id of feature 7797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291739 of field osm_id of feature 7799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291742 of field osm_id of feature 7801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291745 of field osm_id of feature 7803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291748 of field osm_id of feature 7805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291749 of field osm_id of feature 7807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291750 of field osm_id of feature 7809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291751 of field osm_id of feature 7811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291752 of field osm_id of feature 7813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291752 of field osm_id of feature 7814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291753 of field osm_id of feature 7816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291754 of field osm_id of feature 7818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291754 of field osm_id of feature 7819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291755 of field osm_id of feature 7821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291756 of field osm_id of feature 7823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291756 of field osm_id of feature 7824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291757 of field osm_id of feature 7826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291758 of field osm_id of feature 7828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291758 of field osm_id of feature 7829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291759 of field osm_id of feature 7831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291760 of field osm_id of feature 7833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291761 of field osm_id of feature 7835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291762 of field osm_id of feature 7837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291762 of field osm_id of feature 7838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291763 of field osm_id of feature 7840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538291763 of field osm_id of feature 7841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298371 of field osm_id of feature 7843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298372 of field osm_id of feature 7844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298373 of field osm_id of feature 7846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298374 of field osm_id of feature 7848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298375 of field osm_id of feature 7850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298376 of field osm_id of feature 7852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298377 of field osm_id of feature 7855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298378 of field osm_id of feature 7857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298379 of field osm_id of feature 7860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298380 of field osm_id of feature 7862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298381 of field osm_id of feature 7865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298382 of field osm_id of feature 7867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298383 of field osm_id of feature 7870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298384 of field osm_id of feature 7872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298385 of field osm_id of feature 7874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298386 of field osm_id of feature 7876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298388 of field osm_id of feature 7878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298391 of field osm_id of feature 7880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298394 of field osm_id of feature 7882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298396 of field osm_id of feature 7885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298400 of field osm_id of feature 7887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298403 of field osm_id of feature 7889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298407 of field osm_id of feature 7891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298410 of field osm_id of feature 7893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298414 of field osm_id of feature 7895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298417 of field osm_id of feature 7896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298420 of field osm_id of feature 7897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298423 of field osm_id of feature 7898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298426 of field osm_id of feature 7900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298429 of field osm_id of feature 7902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298431 of field osm_id of feature 7904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298435 of field osm_id of feature 7906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298438 of field osm_id of feature 7908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538298442 of field osm_id of feature 7910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538303750 of field osm_id of feature 7912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538303752 of field osm_id of feature 7914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538303755 of field osm_id of feature 7915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415826 of field osm_id of feature 7916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415828 of field osm_id of feature 7917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415831 of field osm_id of feature 7918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415835 of field osm_id of feature 7919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415915 of field osm_id of feature 7920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415916 of field osm_id of feature 7921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415917 of field osm_id of feature 7922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415918 of field osm_id of feature 7923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415919 of field osm_id of feature 7924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415920 of field osm_id of feature 7925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415921 of field osm_id of feature 7926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415922 of field osm_id of feature 7927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538415923 of field osm_id of feature 7928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416083 of field osm_id of feature 7929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416084 of field osm_id of feature 7930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416085 of field osm_id of feature 7931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416086 of field osm_id of feature 7932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416087 of field osm_id of feature 7933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538416088 of field osm_id of feature 7934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417605 of field osm_id of feature 7935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417606 of field osm_id of feature 7937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417607 of field osm_id of feature 7939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417608 of field osm_id of feature 7941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417609 of field osm_id of feature 7943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417610 of field osm_id of feature 7945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417611 of field osm_id of feature 7947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417612 of field osm_id of feature 7949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417613 of field osm_id of feature 7951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417614 of field osm_id of feature 7952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538417615 of field osm_id of feature 7953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427506 of field osm_id of feature 7955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427507 of field osm_id of feature 7956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427509 of field osm_id of feature 7957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427510 of field osm_id of feature 7958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427511 of field osm_id of feature 7959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427512 of field osm_id of feature 7960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427513 of field osm_id of feature 7961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427514 of field osm_id of feature 7962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427515 of field osm_id of feature 7963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538427605 of field osm_id of feature 7965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431794 of field osm_id of feature 7966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431795 of field osm_id of feature 7967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431796 of field osm_id of feature 7968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431797 of field osm_id of feature 7969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431798 of field osm_id of feature 7970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431799 of field osm_id of feature 7971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431800 of field osm_id of feature 7972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431801 of field osm_id of feature 7973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431802 of field osm_id of feature 7974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431803 of field osm_id of feature 7975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431804 of field osm_id of feature 7976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431805 of field osm_id of feature 7978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431806 of field osm_id of feature 7979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431807 of field osm_id of feature 7980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431808 of field osm_id of feature 7981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431809 of field osm_id of feature 7982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538431810 of field osm_id of feature 7983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440074 of field osm_id of feature 7984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440075 of field osm_id of feature 7985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440076 of field osm_id of feature 7986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440077 of field osm_id of feature 7987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440078 of field osm_id of feature 7988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440079 of field osm_id of feature 7989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440080 of field osm_id of feature 7990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440081 of field osm_id of feature 7992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538440082 of field osm_id of feature 7993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538447786 of field osm_id of feature 7995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538447787 of field osm_id of feature 7997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538616979 of field osm_id of feature 7999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619058 of field osm_id of feature 8001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619059 of field osm_id of feature 8003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619060 of field osm_id of feature 8005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619061 of field osm_id of feature 8007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619062 of field osm_id of feature 8008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619063 of field osm_id of feature 8010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619064 of field osm_id of feature 8012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619065 of field osm_id of feature 8013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538619066 of field osm_id of feature 8015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538620030 of field osm_id of feature 8017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624604 of field osm_id of feature 8018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624610 of field osm_id of feature 8021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624612 of field osm_id of feature 8022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624616 of field osm_id of feature 8023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624620 of field osm_id of feature 8024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624623 of field osm_id of feature 8025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624627 of field osm_id of feature 8028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624630 of field osm_id of feature 8031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624634 of field osm_id of feature 8033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624637 of field osm_id of feature 8034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624640 of field osm_id of feature 8036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624644 of field osm_id of feature 8037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624648 of field osm_id of feature 8039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624651 of field osm_id of feature 8041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624655 of field osm_id of feature 8043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624658 of field osm_id of feature 8044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624660 of field osm_id of feature 8046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624664 of field osm_id of feature 8048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538624668 of field osm_id of feature 8049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538629363 of field osm_id of feature 8050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747194 of field osm_id of feature 8051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747195 of field osm_id of feature 8052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747196 of field osm_id of feature 8053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747197 of field osm_id of feature 8054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747198 of field osm_id of feature 8055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747199 of field osm_id of feature 8056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747201 of field osm_id of feature 8057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747202 of field osm_id of feature 8058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747203 of field osm_id of feature 8059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747204 of field osm_id of feature 8060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747205 of field osm_id of feature 8061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747206 of field osm_id of feature 8062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747207 of field osm_id of feature 8063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747208 of field osm_id of feature 8064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747209 of field osm_id of feature 8065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747210 of field osm_id of feature 8066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747211 of field osm_id of feature 8067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747212 of field osm_id of feature 8068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747213 of field osm_id of feature 8069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747214 of field osm_id of feature 8070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747215 of field osm_id of feature 8071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747216 of field osm_id of feature 8072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747217 of field osm_id of feature 8073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747218 of field osm_id of feature 8074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747219 of field osm_id of feature 8075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747220 of field osm_id of feature 8076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747221 of field osm_id of feature 8077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747222 of field osm_id of feature 8078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538747223 of field osm_id of feature 8079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538750168 of field osm_id of feature 8080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538750169 of field osm_id of feature 8081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538750170 of field osm_id of feature 8082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751716 of field osm_id of feature 8083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751719 of field osm_id of feature 8084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751720 of field osm_id of feature 8085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751723 of field osm_id of feature 8086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751725 of field osm_id of feature 8087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751728 of field osm_id of feature 8088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751730 of field osm_id of feature 8089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751734 of field osm_id of feature 8090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751736 of field osm_id of feature 8091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751739 of field osm_id of feature 8092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751742 of field osm_id of feature 8093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751744 of field osm_id of feature 8094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538751747 of field osm_id of feature 8095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538754960 of field osm_id of feature 8096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538754961 of field osm_id of feature 8097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538756686 of field osm_id of feature 8098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538759683 of field osm_id of feature 8099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538761281 of field osm_id of feature 8100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538761282 of field osm_id of feature 8101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538761283 of field osm_id of feature 8102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762664 of field osm_id of feature 8103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762665 of field osm_id of feature 8104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762667 of field osm_id of feature 8106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762668 of field osm_id of feature 8109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762669 of field osm_id of feature 8111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538762670 of field osm_id of feature 8113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766096 of field osm_id of feature 8115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766097 of field osm_id of feature 8117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766098 of field osm_id of feature 8119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766099 of field osm_id of feature 8121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766100 of field osm_id of feature 8123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766101 of field osm_id of feature 8125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766102 of field osm_id of feature 8127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766103 of field osm_id of feature 8129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766104 of field osm_id of feature 8131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766105 of field osm_id of feature 8133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766106 of field osm_id of feature 8135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766107 of field osm_id of feature 8136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766108 of field osm_id of feature 8140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766109 of field osm_id of feature 8143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766110 of field osm_id of feature 8145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766111 of field osm_id of feature 8146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766112 of field osm_id of feature 8147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766113 of field osm_id of feature 8150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766114 of field osm_id of feature 8152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766115 of field osm_id of feature 8154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766116 of field osm_id of feature 8156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766117 of field osm_id of feature 8158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766118 of field osm_id of feature 8160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766119 of field osm_id of feature 8162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766120 of field osm_id of feature 8164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766121 of field osm_id of feature 8165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766122 of field osm_id of feature 8166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766123 of field osm_id of feature 8167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766124 of field osm_id of feature 8168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766125 of field osm_id of feature 8169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766126 of field osm_id of feature 8170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766127 of field osm_id of feature 8171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766128 of field osm_id of feature 8172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766129 of field osm_id of feature 8173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766130 of field osm_id of feature 8174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766131 of field osm_id of feature 8175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766132 of field osm_id of feature 8176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766133 of field osm_id of feature 8177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766134 of field osm_id of feature 8178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766135 of field osm_id of feature 8180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766136 of field osm_id of feature 8182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766137 of field osm_id of feature 8183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538766138 of field osm_id of feature 8184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767544 of field osm_id of feature 8185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767545 of field osm_id of feature 8187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767546 of field osm_id of feature 8188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767547 of field osm_id of feature 8189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767548 of field osm_id of feature 8191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767549 of field osm_id of feature 8192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767550 of field osm_id of feature 8194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767551 of field osm_id of feature 8196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767552 of field osm_id of feature 8197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767553 of field osm_id of feature 8200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767554 of field osm_id of feature 8202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767555 of field osm_id of feature 8203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767556 of field osm_id of feature 8204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767557 of field osm_id of feature 8205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767558 of field osm_id of feature 8206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767559 of field osm_id of feature 8207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767560 of field osm_id of feature 8208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767561 of field osm_id of feature 8209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767562 of field osm_id of feature 8210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767563 of field osm_id of feature 8211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767564 of field osm_id of feature 8212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767565 of field osm_id of feature 8213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767566 of field osm_id of feature 8214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767567 of field osm_id of feature 8215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767570 of field osm_id of feature 8216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767572 of field osm_id of feature 8217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767573 of field osm_id of feature 8218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767574 of field osm_id of feature 8220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538767575 of field osm_id of feature 8222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538768939 of field osm_id of feature 8223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538768940 of field osm_id of feature 8224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538768941 of field osm_id of feature 8225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769200 of field osm_id of feature 8227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769201 of field osm_id of feature 8229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769202 of field osm_id of feature 8230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769203 of field osm_id of feature 8231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769205 of field osm_id of feature 8233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769206 of field osm_id of feature 8235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769210 of field osm_id of feature 8237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769212 of field osm_id of feature 8239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769214 of field osm_id of feature 8240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769215 of field osm_id of feature 8241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769217 of field osm_id of feature 8242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538769218 of field osm_id of feature 8243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538770174 of field osm_id of feature 8244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538770176 of field osm_id of feature 8246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538770644 of field osm_id of feature 8247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538770646 of field osm_id of feature 8248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810637 of field osm_id of feature 8371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810638 of field osm_id of feature 8374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810641 of field osm_id of feature 8377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810642 of field osm_id of feature 8379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810643 of field osm_id of feature 8381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810644 of field osm_id of feature 8383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810645 of field osm_id of feature 8385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810661 of field osm_id of feature 8389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538810662 of field osm_id of feature 8393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538814005 of field osm_id of feature 8406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538815777 of field osm_id of feature 8408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538815778 of field osm_id of feature 8410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538824798 of field osm_id of feature 8530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538824799 of field osm_id of feature 8532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538830381 of field osm_id of feature 8631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538830382 of field osm_id of feature 8633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538830385 of field osm_id of feature 8638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836481 of field osm_id of feature 8690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836482 of field osm_id of feature 8692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836483 of field osm_id of feature 8694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836484 of field osm_id of feature 8695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836485 of field osm_id of feature 8696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836486 of field osm_id of feature 8698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836487 of field osm_id of feature 8700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836488 of field osm_id of feature 8702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836489 of field osm_id of feature 8704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836490 of field osm_id of feature 8705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538836491 of field osm_id of feature 8707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538842046 of field osm_id of feature 8727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538842047 of field osm_id of feature 8729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538842047 of field osm_id of feature 8730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538842048 of field osm_id of feature 8731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538842999 of field osm_id of feature 8734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538843000 of field osm_id of feature 8736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538844142 of field osm_id of feature 8742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538844144 of field osm_id of feature 8743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538845839 of field osm_id of feature 8769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538845840 of field osm_id of feature 8771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846523 of field osm_id of feature 8772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846524 of field osm_id of feature 8773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846525 of field osm_id of feature 8775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846530 of field osm_id of feature 8778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846531 of field osm_id of feature 8780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538846539 of field osm_id of feature 8787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538851472 of field osm_id of feature 8800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538851478 of field osm_id of feature 8801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852397 of field osm_id of feature 8802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852397 of field osm_id of feature 8803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852398 of field osm_id of feature 8804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852399 of field osm_id of feature 8805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852399 of field osm_id of feature 8806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852400 of field osm_id of feature 8808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538852401 of field osm_id of feature 8810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538856844 of field osm_id of feature 8917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538856845 of field osm_id of feature 8919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538861067 of field osm_id of feature 8956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862106 of field osm_id of feature 8981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862106 of field osm_id of feature 8982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862107 of field osm_id of feature 8984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862108 of field osm_id of feature 8986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862109 of field osm_id of feature 8988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862110 of field osm_id of feature 8990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862111 of field osm_id of feature 8992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862111 of field osm_id of feature 8993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538862112 of field osm_id of feature 8995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538909550 of field osm_id of feature 9015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538909638 of field osm_id of feature 9017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910085 of field osm_id of feature 9018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910086 of field osm_id of feature 9019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910087 of field osm_id of feature 9020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910088 of field osm_id of feature 9021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910089 of field osm_id of feature 9022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910090 of field osm_id of feature 9023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910091 of field osm_id of feature 9024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910092 of field osm_id of feature 9025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910093 of field osm_id of feature 9026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910094 of field osm_id of feature 9027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910095 of field osm_id of feature 9028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910096 of field osm_id of feature 9029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910097 of field osm_id of feature 9030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910098 of field osm_id of feature 9031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910099 of field osm_id of feature 9032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910100 of field osm_id of feature 9033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910101 of field osm_id of feature 9034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538910102 of field osm_id of feature 9035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538911305 of field osm_id of feature 9036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538911306 of field osm_id of feature 9037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914457 of field osm_id of feature 9038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914458 of field osm_id of feature 9039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914458 of field osm_id of feature 9040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914459 of field osm_id of feature 9041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914460 of field osm_id of feature 9043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914460 of field osm_id of feature 9044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914461 of field osm_id of feature 9045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914461 of field osm_id of feature 9046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914462 of field osm_id of feature 9047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914463 of field osm_id of feature 9048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914463 of field osm_id of feature 9049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914464 of field osm_id of feature 9050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914465 of field osm_id of feature 9051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914466 of field osm_id of feature 9052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914467 of field osm_id of feature 9053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914468 of field osm_id of feature 9054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914468 of field osm_id of feature 9055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914469 of field osm_id of feature 9056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914470 of field osm_id of feature 9057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914471 of field osm_id of feature 9058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914472 of field osm_id of feature 9059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914473 of field osm_id of feature 9060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538914474 of field osm_id of feature 9062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916608 of field osm_id of feature 9063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916612 of field osm_id of feature 9064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916612 of field osm_id of feature 9065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916615 of field osm_id of feature 9067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916618 of field osm_id of feature 9068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916621 of field osm_id of feature 9069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538916624 of field osm_id of feature 9070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922838 of field osm_id of feature 9071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922839 of field osm_id of feature 9072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922840 of field osm_id of feature 9073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922841 of field osm_id of feature 9074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922842 of field osm_id of feature 9075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922843 of field osm_id of feature 9076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922843 of field osm_id of feature 9077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922844 of field osm_id of feature 9078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922845 of field osm_id of feature 9079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922846 of field osm_id of feature 9080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922847 of field osm_id of feature 9081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922848 of field osm_id of feature 9082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922849 of field osm_id of feature 9083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922850 of field osm_id of feature 9084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922851 of field osm_id of feature 9085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922852 of field osm_id of feature 9087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922853 of field osm_id of feature 9088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922853 of field osm_id of feature 9089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922854 of field osm_id of feature 9092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922855 of field osm_id of feature 9094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922856 of field osm_id of feature 9096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922857 of field osm_id of feature 9097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538922858 of field osm_id of feature 9098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538924982 of field osm_id of feature 9099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538926224 of field osm_id of feature 9100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538926225 of field osm_id of feature 9101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538926226 of field osm_id of feature 9102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538926227 of field osm_id of feature 9104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538926228 of field osm_id of feature 9105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 538930035 of field osm_id of feature 9106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002902 of field osm_id of feature 9108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002903 of field osm_id of feature 9109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002904 of field osm_id of feature 9110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002905 of field osm_id of feature 9111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002906 of field osm_id of feature 9112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002907 of field osm_id of feature 9113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002908 of field osm_id of feature 9114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002909 of field osm_id of feature 9115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002910 of field osm_id of feature 9116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002911 of field osm_id of feature 9117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002912 of field osm_id of feature 9118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002913 of field osm_id of feature 9119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002914 of field osm_id of feature 9120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002915 of field osm_id of feature 9121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002916 of field osm_id of feature 9122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002917 of field osm_id of feature 9123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002919 of field osm_id of feature 9124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002922 of field osm_id of feature 9125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002925 of field osm_id of feature 9126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002929 of field osm_id of feature 9127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002932 of field osm_id of feature 9128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002934 of field osm_id of feature 9129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002937 of field osm_id of feature 9130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002940 of field osm_id of feature 9131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002944 of field osm_id of feature 9132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002946 of field osm_id of feature 9133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002949 of field osm_id of feature 9134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002949 of field osm_id of feature 9135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002952 of field osm_id of feature 9136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002952 of field osm_id of feature 9137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002955 of field osm_id of feature 9139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002958 of field osm_id of feature 9141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002961 of field osm_id of feature 9143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002965 of field osm_id of feature 9144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002968 of field osm_id of feature 9145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002969 of field osm_id of feature 9146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002970 of field osm_id of feature 9147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002971 of field osm_id of feature 9149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002972 of field osm_id of feature 9150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002973 of field osm_id of feature 9151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002974 of field osm_id of feature 9152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002975 of field osm_id of feature 9153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002976 of field osm_id of feature 9154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002977 of field osm_id of feature 9155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002978 of field osm_id of feature 9156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002979 of field osm_id of feature 9157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002980 of field osm_id of feature 9159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002981 of field osm_id of feature 9161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002982 of field osm_id of feature 9163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002983 of field osm_id of feature 9165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002984 of field osm_id of feature 9167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002985 of field osm_id of feature 9169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002986 of field osm_id of feature 9171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002987 of field osm_id of feature 9173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002988 of field osm_id of feature 9175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002989 of field osm_id of feature 9176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002990 of field osm_id of feature 9178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002991 of field osm_id of feature 9180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002992 of field osm_id of feature 9182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002993 of field osm_id of feature 9184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002994 of field osm_id of feature 9185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002995 of field osm_id of feature 9186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002996 of field osm_id of feature 9187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002997 of field osm_id of feature 9188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002998 of field osm_id of feature 9189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539002999 of field osm_id of feature 9190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539003000 of field osm_id of feature 9191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539003001 of field osm_id of feature 9192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539003002 of field osm_id of feature 9193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539003003 of field osm_id of feature 9195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539003004 of field osm_id of feature 9197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004581 of field osm_id of feature 9199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004835 of field osm_id of feature 9201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004836 of field osm_id of feature 9203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004837 of field osm_id of feature 9205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004838 of field osm_id of feature 9207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539004839 of field osm_id of feature 9209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539033696 of field osm_id of feature 9249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539042621 of field osm_id of feature 9262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539042622 of field osm_id of feature 9263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539042623 of field osm_id of feature 9264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539042624 of field osm_id of feature 9265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539053711 of field osm_id of feature 9266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539053713 of field osm_id of feature 9267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539053716 of field osm_id of feature 9268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539053719 of field osm_id of feature 9269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539057339 of field osm_id of feature 9319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539057340 of field osm_id of feature 9321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539057341 of field osm_id of feature 9323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539057342 of field osm_id of feature 9325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539059209 of field osm_id of feature 9361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539059210 of field osm_id of feature 9363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539073594 of field osm_id of feature 9402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539073595 of field osm_id of feature 9404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539076133 of field osm_id of feature 9422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539076187 of field osm_id of feature 9474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539093645 of field osm_id of feature 9580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539093648 of field osm_id of feature 9582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539093651 of field osm_id of feature 9584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539093653 of field osm_id of feature 9586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539095027 of field osm_id of feature 9592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539095028 of field osm_id of feature 9594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539100727 of field osm_id of feature 9718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539100728 of field osm_id of feature 9720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539101764 of field osm_id of feature 9739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539101765 of field osm_id of feature 9740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102474 of field osm_id of feature 9753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102475 of field osm_id of feature 9755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102476 of field osm_id of feature 9757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102716 of field osm_id of feature 9763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102717 of field osm_id of feature 9765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102718 of field osm_id of feature 9767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102719 of field osm_id of feature 9769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102720 of field osm_id of feature 9771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102721 of field osm_id of feature 9773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102722 of field osm_id of feature 9775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539102723 of field osm_id of feature 9777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539103016 of field osm_id of feature 9785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539103017 of field osm_id of feature 9787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539114507 of field osm_id of feature 9837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539114510 of field osm_id of feature 9839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539183645 of field osm_id of feature 9916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539184142 of field osm_id of feature 9918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539184143 of field osm_id of feature 9920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539185328 of field osm_id of feature 9922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539186518 of field osm_id of feature 9924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207742 of field osm_id of feature 9926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207743 of field osm_id of feature 9928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207744 of field osm_id of feature 9931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207746 of field osm_id of feature 9933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207747 of field osm_id of feature 9935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539207748 of field osm_id of feature 9937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539208245 of field osm_id of feature 9939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539208246 of field osm_id of feature 9941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209323 of field osm_id of feature 9943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209324 of field osm_id of feature 9946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209325 of field osm_id of feature 9948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209326 of field osm_id of feature 9950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209327 of field osm_id of feature 9952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209328 of field osm_id of feature 9954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209811 of field osm_id of feature 9956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209812 of field osm_id of feature 9958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209813 of field osm_id of feature 9960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539209814 of field osm_id of feature 9962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539211498 of field osm_id of feature 9964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213520 of field osm_id of feature 9966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213520 of field osm_id of feature 9967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213523 of field osm_id of feature 9969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213525 of field osm_id of feature 9971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213525 of field osm_id of feature 9972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539213526 of field osm_id of feature 9974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539244172 of field osm_id of feature 9976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539244173 of field osm_id of feature 9978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539244173 of field osm_id of feature 9979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539244174 of field osm_id of feature 9981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539244175 of field osm_id of feature 9983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246804 of field osm_id of feature 9985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246805 of field osm_id of feature 9987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246806 of field osm_id of feature 9989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246807 of field osm_id of feature 9991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246808 of field osm_id of feature 9993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246809 of field osm_id of feature 9995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539246810 of field osm_id of feature 9997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539248151 of field osm_id of feature 9999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261261 of field osm_id of feature 10043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261590 of field osm_id of feature 10060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261591 of field osm_id of feature 10062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261592 of field osm_id of feature 10065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261593 of field osm_id of feature 10067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261594 of field osm_id of feature 10069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261597 of field osm_id of feature 10071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261598 of field osm_id of feature 10073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539261599 of field osm_id of feature 10075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263423 of field osm_id of feature 10078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263424 of field osm_id of feature 10080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263425 of field osm_id of feature 10082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263426 of field osm_id of feature 10084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263427 of field osm_id of feature 10086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263428 of field osm_id of feature 10088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263429 of field osm_id of feature 10090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539263430 of field osm_id of feature 10092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539265993 of field osm_id of feature 10110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539265994 of field osm_id of feature 10112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539267636 of field osm_id of feature 10117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539267637 of field osm_id of feature 10119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539268807 of field osm_id of feature 10137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539268808 of field osm_id of feature 10139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539268809 of field osm_id of feature 10141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539284237 of field osm_id of feature 10244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539284237 of field osm_id of feature 10245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539284238 of field osm_id of feature 10247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539284238 of field osm_id of feature 10248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539290047 of field osm_id of feature 10338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539296460 of field osm_id of feature 10404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539298282 of field osm_id of feature 10419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539301690 of field osm_id of feature 10444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539305397 of field osm_id of feature 10463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539306318 of field osm_id of feature 10470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539306319 of field osm_id of feature 10472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307767 of field osm_id of feature 10500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307768 of field osm_id of feature 10502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307769 of field osm_id of feature 10504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307770 of field osm_id of feature 10506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307771 of field osm_id of feature 10508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307772 of field osm_id of feature 10510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307773 of field osm_id of feature 10512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307774 of field osm_id of feature 10514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307775 of field osm_id of feature 10516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307776 of field osm_id of feature 10518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307777 of field osm_id of feature 10520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539307778 of field osm_id of feature 10522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309558 of field osm_id of feature 10582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309559 of field osm_id of feature 10584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309560 of field osm_id of feature 10586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309561 of field osm_id of feature 10588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309562 of field osm_id of feature 10590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309563 of field osm_id of feature 10593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309564 of field osm_id of feature 10595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309565 of field osm_id of feature 10597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309566 of field osm_id of feature 10599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309567 of field osm_id of feature 10601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309568 of field osm_id of feature 10603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539309569 of field osm_id of feature 10605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310350 of field osm_id of feature 10607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310351 of field osm_id of feature 10609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310352 of field osm_id of feature 10611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310353 of field osm_id of feature 10613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310354 of field osm_id of feature 10615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310355 of field osm_id of feature 10617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310356 of field osm_id of feature 10619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310357 of field osm_id of feature 10621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539310358 of field osm_id of feature 10623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539311816 of field osm_id of feature 10660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539311818 of field osm_id of feature 10662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539311821 of field osm_id of feature 10664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539311823 of field osm_id of feature 10666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539313767 of field osm_id of feature 10693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539313769 of field osm_id of feature 10695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539313780 of field osm_id of feature 10710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539313786 of field osm_id of feature 10717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539315135 of field osm_id of feature 10732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539317433 of field osm_id of feature 10747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539317434 of field osm_id of feature 10749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539317435 of field osm_id of feature 10751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539317436 of field osm_id of feature 10753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539320728 of field osm_id of feature 10769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539320729 of field osm_id of feature 10770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539322046 of field osm_id of feature 10771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539322051 of field osm_id of feature 10773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539324011 of field osm_id of feature 10776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539328450 of field osm_id of feature 10809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539328451 of field osm_id of feature 10811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539328453 of field osm_id of feature 10814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539328454 of field osm_id of feature 10816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539329172 of field osm_id of feature 10823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539329173 of field osm_id of feature 10825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539329175 of field osm_id of feature 10828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539329176 of field osm_id of feature 10830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330564 of field osm_id of feature 10842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330564 of field osm_id of feature 10843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330565 of field osm_id of feature 10844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330566 of field osm_id of feature 10845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330566 of field osm_id of feature 10846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330817 of field osm_id of feature 10847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330818 of field osm_id of feature 10848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330819 of field osm_id of feature 10849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330820 of field osm_id of feature 10850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539330821 of field osm_id of feature 10851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539339871 of field osm_id of feature 10860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539340313 of field osm_id of feature 10862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341022 of field osm_id of feature 10863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341023 of field osm_id of feature 10864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341024 of field osm_id of feature 10865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341025 of field osm_id of feature 10866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341026 of field osm_id of feature 10867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341027 of field osm_id of feature 10868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341028 of field osm_id of feature 10869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539341029 of field osm_id of feature 10870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342035 of field osm_id of feature 10871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342036 of field osm_id of feature 10872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342037 of field osm_id of feature 10874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342038 of field osm_id of feature 10876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342039 of field osm_id of feature 10878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342139 of field osm_id of feature 10880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342382 of field osm_id of feature 10882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342383 of field osm_id of feature 10883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342384 of field osm_id of feature 10885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342385 of field osm_id of feature 10886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342386 of field osm_id of feature 10887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342387 of field osm_id of feature 10888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342388 of field osm_id of feature 10889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342389 of field osm_id of feature 10891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342390 of field osm_id of feature 10893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342391 of field osm_id of feature 10895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342392 of field osm_id of feature 10896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342393 of field osm_id of feature 10897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342394 of field osm_id of feature 10899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342395 of field osm_id of feature 10900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342396 of field osm_id of feature 10901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342397 of field osm_id of feature 10902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342399 of field osm_id of feature 10903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342400 of field osm_id of feature 10904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342401 of field osm_id of feature 10905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342402 of field osm_id of feature 10906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342403 of field osm_id of feature 10907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342404 of field osm_id of feature 10908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342405 of field osm_id of feature 10909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342406 of field osm_id of feature 10910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342407 of field osm_id of feature 10911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342408 of field osm_id of feature 10912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342409 of field osm_id of feature 10913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342410 of field osm_id of feature 10914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342411 of field osm_id of feature 10915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342412 of field osm_id of feature 10916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342413 of field osm_id of feature 10917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342414 of field osm_id of feature 10918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342417 of field osm_id of feature 10919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342417 of field osm_id of feature 10920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539342418 of field osm_id of feature 10921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539348637 of field osm_id of feature 10922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539348638 of field osm_id of feature 10923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539348824 of field osm_id of feature 10924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539348825 of field osm_id of feature 10925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539348981 of field osm_id of feature 10926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539350750 of field osm_id of feature 10929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539350751 of field osm_id of feature 10931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539350752 of field osm_id of feature 10932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539350752 of field osm_id of feature 10933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351596 of field osm_id of feature 10934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351597 of field osm_id of feature 10935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351598 of field osm_id of feature 10936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351599 of field osm_id of feature 10937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351600 of field osm_id of feature 10938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351601 of field osm_id of feature 10939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351601 of field osm_id of feature 10940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351602 of field osm_id of feature 10941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351602 of field osm_id of feature 10942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351603 of field osm_id of feature 10943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351604 of field osm_id of feature 10944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351605 of field osm_id of feature 10945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351606 of field osm_id of feature 10946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351606 of field osm_id of feature 10947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351607 of field osm_id of feature 10948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539351608 of field osm_id of feature 10949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539353386 of field osm_id of feature 10950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539353389 of field osm_id of feature 10951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539353392 of field osm_id of feature 10952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539353397 of field osm_id of feature 10953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539353402 of field osm_id of feature 10954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355276 of field osm_id of feature 10955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355276 of field osm_id of feature 10956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355277 of field osm_id of feature 10957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355278 of field osm_id of feature 10958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355279 of field osm_id of feature 10959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355279 of field osm_id of feature 10960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355280 of field osm_id of feature 10961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355280 of field osm_id of feature 10962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355281 of field osm_id of feature 10963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355282 of field osm_id of feature 10964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355283 of field osm_id of feature 10965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355284 of field osm_id of feature 10966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355285 of field osm_id of feature 10967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355285 of field osm_id of feature 10968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355286 of field osm_id of feature 10969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355287 of field osm_id of feature 10971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355288 of field osm_id of feature 10973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355289 of field osm_id of feature 10975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355290 of field osm_id of feature 10977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355291 of field osm_id of feature 10979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355292 of field osm_id of feature 10980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355293 of field osm_id of feature 10981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355294 of field osm_id of feature 10982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355295 of field osm_id of feature 10983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355431 of field osm_id of feature 10984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355434 of field osm_id of feature 10985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355438 of field osm_id of feature 10986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539355438 of field osm_id of feature 10987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539357715 of field osm_id of feature 10988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539359382 of field osm_id of feature 10989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539359383 of field osm_id of feature 10991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539359384 of field osm_id of feature 10993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539378426 of field osm_id of feature 10997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539379658 of field osm_id of feature 10999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381124 of field osm_id of feature 11000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381125 of field osm_id of feature 11002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381126 of field osm_id of feature 11004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381127 of field osm_id of feature 11006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381128 of field osm_id of feature 11007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539381129 of field osm_id of feature 11008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382304 of field osm_id of feature 11009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382305 of field osm_id of feature 11010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382306 of field osm_id of feature 11011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382307 of field osm_id of feature 11012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382308 of field osm_id of feature 11013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382309 of field osm_id of feature 11014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382310 of field osm_id of feature 11015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382311 of field osm_id of feature 11016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382312 of field osm_id of feature 11017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382313 of field osm_id of feature 11018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382314 of field osm_id of feature 11019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382315 of field osm_id of feature 11020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382316 of field osm_id of feature 11021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382317 of field osm_id of feature 11022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382318 of field osm_id of feature 11023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382319 of field osm_id of feature 11024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382320 of field osm_id of feature 11025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382321 of field osm_id of feature 11026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382321 of field osm_id of feature 11027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382322 of field osm_id of feature 11028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382322 of field osm_id of feature 11029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382323 of field osm_id of feature 11030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539382324 of field osm_id of feature 11031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539383628 of field osm_id of feature 11032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407053 of field osm_id of feature 11033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407056 of field osm_id of feature 11034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407059 of field osm_id of feature 11035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407063 of field osm_id of feature 11036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407067 of field osm_id of feature 11037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407070 of field osm_id of feature 11038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407074 of field osm_id of feature 11039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407078 of field osm_id of feature 11040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407081 of field osm_id of feature 11041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407084 of field osm_id of feature 11042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407088 of field osm_id of feature 11043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407092 of field osm_id of feature 11044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407096 of field osm_id of feature 11045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539407101 of field osm_id of feature 11046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539408851 of field osm_id of feature 11047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539408878 of field osm_id of feature 11048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539408882 of field osm_id of feature 11049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409673 of field osm_id of feature 11050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409674 of field osm_id of feature 11051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409675 of field osm_id of feature 11052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409676 of field osm_id of feature 11053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409677 of field osm_id of feature 11054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409678 of field osm_id of feature 11055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409679 of field osm_id of feature 11056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409680 of field osm_id of feature 11057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539409681 of field osm_id of feature 11058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539410060 of field osm_id of feature 11059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539410061 of field osm_id of feature 11060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539410890 of field osm_id of feature 11061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539410891 of field osm_id of feature 11062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411857 of field osm_id of feature 11063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411858 of field osm_id of feature 11064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411859 of field osm_id of feature 11065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411860 of field osm_id of feature 11066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411861 of field osm_id of feature 11067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411862 of field osm_id of feature 11068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411863 of field osm_id of feature 11069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411864 of field osm_id of feature 11070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539411865 of field osm_id of feature 11071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539413297 of field osm_id of feature 11072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539414281 of field osm_id of feature 11073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539414282 of field osm_id of feature 11074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415380 of field osm_id of feature 11075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415381 of field osm_id of feature 11076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415382 of field osm_id of feature 11077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415384 of field osm_id of feature 11079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415387 of field osm_id of feature 11081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539415391 of field osm_id of feature 11082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539416381 of field osm_id of feature 11083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418279 of field osm_id of feature 11084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418280 of field osm_id of feature 11085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418281 of field osm_id of feature 11086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418282 of field osm_id of feature 11087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418283 of field osm_id of feature 11088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418284 of field osm_id of feature 11089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418285 of field osm_id of feature 11090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418286 of field osm_id of feature 11092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418287 of field osm_id of feature 11094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418288 of field osm_id of feature 11096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418289 of field osm_id of feature 11098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418290 of field osm_id of feature 11099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418422 of field osm_id of feature 11101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418423 of field osm_id of feature 11103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418424 of field osm_id of feature 11104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418597 of field osm_id of feature 11105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418601 of field osm_id of feature 11107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418604 of field osm_id of feature 11110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418606 of field osm_id of feature 11112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539418868 of field osm_id of feature 11114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419954 of field osm_id of feature 11116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419955 of field osm_id of feature 11118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419956 of field osm_id of feature 11120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419957 of field osm_id of feature 11122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419958 of field osm_id of feature 11124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419959 of field osm_id of feature 11126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419960 of field osm_id of feature 11128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419961 of field osm_id of feature 11130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419962 of field osm_id of feature 11131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419963 of field osm_id of feature 11132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419964 of field osm_id of feature 11133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419965 of field osm_id of feature 11134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419966 of field osm_id of feature 11135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419967 of field osm_id of feature 11136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419968 of field osm_id of feature 11137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419969 of field osm_id of feature 11138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419969 of field osm_id of feature 11139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539419970 of field osm_id of feature 11140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539421122 of field osm_id of feature 11141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422245 of field osm_id of feature 11142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422245 of field osm_id of feature 11143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422246 of field osm_id of feature 11144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422246 of field osm_id of feature 11145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422247 of field osm_id of feature 11146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422248 of field osm_id of feature 11148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422248 of field osm_id of feature 11149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422249 of field osm_id of feature 11151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422250 of field osm_id of feature 11152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422251 of field osm_id of feature 11153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422252 of field osm_id of feature 11155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422253 of field osm_id of feature 11156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422254 of field osm_id of feature 11157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422255 of field osm_id of feature 11158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422256 of field osm_id of feature 11159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422257 of field osm_id of feature 11160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422258 of field osm_id of feature 11162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422259 of field osm_id of feature 11164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422260 of field osm_id of feature 11166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422261 of field osm_id of feature 11167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422262 of field osm_id of feature 11168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422263 of field osm_id of feature 11170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539422264 of field osm_id of feature 11172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539423539 of field osm_id of feature 11174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539423540 of field osm_id of feature 11176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539423541 of field osm_id of feature 11177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539423542 of field osm_id of feature 11178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539425432 of field osm_id of feature 11179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539425433 of field osm_id of feature 11180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539427641 of field osm_id of feature 11183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428648 of field osm_id of feature 11185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428649 of field osm_id of feature 11188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428650 of field osm_id of feature 11190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428651 of field osm_id of feature 11191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428652 of field osm_id of feature 11192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539428653 of field osm_id of feature 11195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429909 of field osm_id of feature 11197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429910 of field osm_id of feature 11200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429911 of field osm_id of feature 11202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429912 of field osm_id of feature 11204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429913 of field osm_id of feature 11205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429914 of field osm_id of feature 11206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429915 of field osm_id of feature 11207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429916 of field osm_id of feature 11208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429917 of field osm_id of feature 11209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539429918 of field osm_id of feature 11211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539430881 of field osm_id of feature 11213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539446919 of field osm_id of feature 11214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539446920 of field osm_id of feature 11215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539447061 of field osm_id of feature 11216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450357 of field osm_id of feature 11217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450358 of field osm_id of feature 11219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450359 of field osm_id of feature 11220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450360 of field osm_id of feature 11221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450361 of field osm_id of feature 11222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450362 of field osm_id of feature 11223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450364 of field osm_id of feature 11224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450367 of field osm_id of feature 11225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450370 of field osm_id of feature 11226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450371 of field osm_id of feature 11227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450372 of field osm_id of feature 11228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450841 of field osm_id of feature 11229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450997 of field osm_id of feature 11230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450998 of field osm_id of feature 11231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539450999 of field osm_id of feature 11232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539451000 of field osm_id of feature 11233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539453512 of field osm_id of feature 11234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539454812 of field osm_id of feature 11235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539455146 of field osm_id of feature 11236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539455147 of field osm_id of feature 11237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458369 of field osm_id of feature 11238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458370 of field osm_id of feature 11239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458370 of field osm_id of feature 11240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458371 of field osm_id of feature 11241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458372 of field osm_id of feature 11242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458373 of field osm_id of feature 11243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539458396 of field osm_id of feature 11244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539460488 of field osm_id of feature 11246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539460489 of field osm_id of feature 11247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539461284 of field osm_id of feature 11248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539461287 of field osm_id of feature 11249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539461289 of field osm_id of feature 11250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539461290 of field osm_id of feature 11252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462666 of field osm_id of feature 11254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462667 of field osm_id of feature 11256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462668 of field osm_id of feature 11258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462669 of field osm_id of feature 11260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462670 of field osm_id of feature 11262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462671 of field osm_id of feature 11264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462672 of field osm_id of feature 11265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462673 of field osm_id of feature 11266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462674 of field osm_id of feature 11267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462675 of field osm_id of feature 11269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462676 of field osm_id of feature 11270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462677 of field osm_id of feature 11271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462678 of field osm_id of feature 11272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462679 of field osm_id of feature 11274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462680 of field osm_id of feature 11275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462681 of field osm_id of feature 11278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462682 of field osm_id of feature 11280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462683 of field osm_id of feature 11282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462684 of field osm_id of feature 11284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462685 of field osm_id of feature 11286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462686 of field osm_id of feature 11287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462687 of field osm_id of feature 11288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539462688 of field osm_id of feature 11289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539464128 of field osm_id of feature 11292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539465326 of field osm_id of feature 11293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539465327 of field osm_id of feature 11294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539466149 of field osm_id of feature 11296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539466150 of field osm_id of feature 11298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539466151 of field osm_id of feature 11299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467907 of field osm_id of feature 11305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467908 of field osm_id of feature 11306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467909 of field osm_id of feature 11307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467910 of field osm_id of feature 11308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467910 of field osm_id of feature 11309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467911 of field osm_id of feature 11310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467912 of field osm_id of feature 11312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467913 of field osm_id of feature 11314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467914 of field osm_id of feature 11316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539467915 of field osm_id of feature 11318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539468394 of field osm_id of feature 11322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539469501 of field osm_id of feature 11324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539470428 of field osm_id of feature 11325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539470430 of field osm_id of feature 11326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539472410 of field osm_id of feature 11331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539472411 of field osm_id of feature 11332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539472412 of field osm_id of feature 11333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539472413 of field osm_id of feature 11334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539485008 of field osm_id of feature 11341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539485968 of field osm_id of feature 11372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539486313 of field osm_id of feature 11373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493195 of field osm_id of feature 11394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493197 of field osm_id of feature 11395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493198 of field osm_id of feature 11396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493199 of field osm_id of feature 11397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493206 of field osm_id of feature 11398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539493207 of field osm_id of feature 11399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496095 of field osm_id of feature 11400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496098 of field osm_id of feature 11401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496101 of field osm_id of feature 11402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496103 of field osm_id of feature 11403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496105 of field osm_id of feature 11404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496109 of field osm_id of feature 11405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496110 of field osm_id of feature 11406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496111 of field osm_id of feature 11407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496112 of field osm_id of feature 11408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539496113 of field osm_id of feature 11409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497788 of field osm_id of feature 11411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497789 of field osm_id of feature 11413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497790 of field osm_id of feature 11414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497791 of field osm_id of feature 11415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497792 of field osm_id of feature 11416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497793 of field osm_id of feature 11417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539497795 of field osm_id of feature 11418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539499030 of field osm_id of feature 11425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539499033 of field osm_id of feature 11427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502709 of field osm_id of feature 11445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502714 of field osm_id of feature 11448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502716 of field osm_id of feature 11450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502718 of field osm_id of feature 11452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502719 of field osm_id of feature 11454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502721 of field osm_id of feature 11456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502723 of field osm_id of feature 11458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502724 of field osm_id of feature 11460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539502726 of field osm_id of feature 11462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539503788 of field osm_id of feature 11473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539503789 of field osm_id of feature 11474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539503790 of field osm_id of feature 11475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505823 of field osm_id of feature 11476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505824 of field osm_id of feature 11477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505825 of field osm_id of feature 11478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505826 of field osm_id of feature 11479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505827 of field osm_id of feature 11480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505828 of field osm_id of feature 11481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505829 of field osm_id of feature 11482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505830 of field osm_id of feature 11483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505831 of field osm_id of feature 11484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505832 of field osm_id of feature 11485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505833 of field osm_id of feature 11486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505834 of field osm_id of feature 11487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539505835 of field osm_id of feature 11488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512917 of field osm_id of feature 11501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512918 of field osm_id of feature 11502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512918 of field osm_id of feature 11503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512918 of field osm_id of feature 11504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512922 of field osm_id of feature 11505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512923 of field osm_id of feature 11506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512924 of field osm_id of feature 11507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512925 of field osm_id of feature 11508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512931 of field osm_id of feature 11509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512932 of field osm_id of feature 11510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512933 of field osm_id of feature 11511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512934 of field osm_id of feature 11512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512939 of field osm_id of feature 11513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512940 of field osm_id of feature 11514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539512941 of field osm_id of feature 11515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539514241 of field osm_id of feature 11524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539514242 of field osm_id of feature 11526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539514243 of field osm_id of feature 11528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518145 of field osm_id of feature 11536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518151 of field osm_id of feature 11537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518156 of field osm_id of feature 11538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518164 of field osm_id of feature 11539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518173 of field osm_id of feature 11540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518179 of field osm_id of feature 11541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518180 of field osm_id of feature 11542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518181 of field osm_id of feature 11543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518182 of field osm_id of feature 11544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518183 of field osm_id of feature 11545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518184 of field osm_id of feature 11547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518185 of field osm_id of feature 11548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518186 of field osm_id of feature 11549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518187 of field osm_id of feature 11550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518188 of field osm_id of feature 11551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518189 of field osm_id of feature 11552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518418 of field osm_id of feature 11553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539518419 of field osm_id of feature 11555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519074 of field osm_id of feature 11556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519076 of field osm_id of feature 11559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519077 of field osm_id of feature 11560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519078 of field osm_id of feature 11562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519079 of field osm_id of feature 11564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519080 of field osm_id of feature 11565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519082 of field osm_id of feature 11567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519083 of field osm_id of feature 11568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539519084 of field osm_id of feature 11569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539522009 of field osm_id of feature 11584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539522013 of field osm_id of feature 11586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575025 of field osm_id of feature 11600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575026 of field osm_id of feature 11601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575780 of field osm_id of feature 11602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575783 of field osm_id of feature 11603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575786 of field osm_id of feature 11604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575787 of field osm_id of feature 11605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575794 of field osm_id of feature 11606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575795 of field osm_id of feature 11607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575797 of field osm_id of feature 11608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575798 of field osm_id of feature 11609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 100575801 of field osm_id of feature 11610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539522597 of field osm_id of feature 11611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539522598 of field osm_id of feature 11612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539523498 of field osm_id of feature 11613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539523499 of field osm_id of feature 11614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539523499 of field osm_id of feature 11615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539526396 of field osm_id of feature 11616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539526397 of field osm_id of feature 11617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539526398 of field osm_id of feature 11618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539526399 of field osm_id of feature 11619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539526400 of field osm_id of feature 11620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539531929 of field osm_id of feature 11621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539531930 of field osm_id of feature 11622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539531931 of field osm_id of feature 11623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539531932 of field osm_id of feature 11624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101124100 of field osm_id of feature 11625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101124101 of field osm_id of feature 11626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101125013 of field osm_id of feature 11627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101125016 of field osm_id of feature 11628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101125017 of field osm_id of feature 11629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101126235 of field osm_id of feature 11630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101129117 of field osm_id of feature 11631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101132092 of field osm_id of feature 11632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101134376 of field osm_id of feature 11633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101134379 of field osm_id of feature 11634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101134380 of field osm_id of feature 11635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 101135751 of field osm_id of feature 11636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539535924 of field osm_id of feature 11637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539535925 of field osm_id of feature 11638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539535930 of field osm_id of feature 11639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539535931 of field osm_id of feature 11640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539535932 of field osm_id of feature 11641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539537723 of field osm_id of feature 11642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539537724 of field osm_id of feature 11643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539537985 of field osm_id of feature 11644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102735657 of field osm_id of feature 11645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539537986 of field osm_id of feature 11646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102735661 of field osm_id of feature 11647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102735664 of field osm_id of feature 11648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102927369 of field osm_id of feature 11649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102927370 of field osm_id of feature 11650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102927372 of field osm_id of feature 11651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102927376 of field osm_id of feature 11652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 102927377 of field osm_id of feature 11653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538347 of field osm_id of feature 11654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538348 of field osm_id of feature 11655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538349 of field osm_id of feature 11656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538350 of field osm_id of feature 11657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538351 of field osm_id of feature 11658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538352 of field osm_id of feature 11659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538353 of field osm_id of feature 11660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538356 of field osm_id of feature 11661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538357 of field osm_id of feature 11662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538358 of field osm_id of feature 11663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539538359 of field osm_id of feature 11664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 103926113 of field osm_id of feature 11665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 103926115 of field osm_id of feature 11666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 103926121 of field osm_id of feature 11667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 103926128 of field osm_id of feature 11668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 103927968 of field osm_id of feature 11669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539542165 of field osm_id of feature 11670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539542165 of field osm_id of feature 11671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539548449 of field osm_id of feature 11672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539548450 of field osm_id of feature 11673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539582258 of field osm_id of feature 11674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104143838 of field osm_id of feature 11675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539582260 of field osm_id of feature 11676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104143839 of field osm_id of feature 11677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591210 of field osm_id of feature 11678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104143841 of field osm_id of feature 11679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591211 of field osm_id of feature 11680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104145280 of field osm_id of feature 11681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591212 of field osm_id of feature 11682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104145281 of field osm_id of feature 11683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591213 of field osm_id of feature 11684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591213 of field osm_id of feature 11685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104352310 of field osm_id of feature 11686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591214 of field osm_id of feature 11687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591215 of field osm_id of feature 11688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104385117 of field osm_id of feature 11689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591216 of field osm_id of feature 11690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591217 of field osm_id of feature 11691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591217 of field osm_id of feature 11692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591218 of field osm_id of feature 11693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104385287 of field osm_id of feature 11694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591219 of field osm_id of feature 11695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539591219 of field osm_id of feature 11696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104385784 of field osm_id of feature 11697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539596211 of field osm_id of feature 11698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539596214 of field osm_id of feature 11699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539596450 of field osm_id of feature 11700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598536 of field osm_id of feature 11701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598537 of field osm_id of feature 11702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598538 of field osm_id of feature 11703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598539 of field osm_id of feature 11704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598540 of field osm_id of feature 11705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598541 of field osm_id of feature 11706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598542 of field osm_id of feature 11707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598542 of field osm_id of feature 11708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598543 of field osm_id of feature 11709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598543 of field osm_id of feature 11710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598544 of field osm_id of feature 11711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598544 of field osm_id of feature 11712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598755 of field osm_id of feature 11713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598755 of field osm_id of feature 11714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104515352 of field osm_id of feature 11715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598756 of field osm_id of feature 11716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598757 of field osm_id of feature 11717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598757 of field osm_id of feature 11718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104515355 of field osm_id of feature 11719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598758 of field osm_id of feature 11720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598759 of field osm_id of feature 11721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539598760 of field osm_id of feature 11722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539602458 of field osm_id of feature 11723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539602459 of field osm_id of feature 11724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539602768 of field osm_id of feature 11725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539602769 of field osm_id of feature 11726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539603100 of field osm_id of feature 11727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539603101 of field osm_id of feature 11728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539603102 of field osm_id of feature 11729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539638974 of field osm_id of feature 11730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539638975 of field osm_id of feature 11731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539638976 of field osm_id of feature 11732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642088 of field osm_id of feature 11733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642089 of field osm_id of feature 11734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642091 of field osm_id of feature 11735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642093 of field osm_id of feature 11736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642096 of field osm_id of feature 11737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642099 of field osm_id of feature 11738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642101 of field osm_id of feature 11739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642103 of field osm_id of feature 11740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642106 of field osm_id of feature 11741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642108 of field osm_id of feature 11742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642109 of field osm_id of feature 11743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642110 of field osm_id of feature 11744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539642111 of field osm_id of feature 11745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643342 of field osm_id of feature 11746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643343 of field osm_id of feature 11747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643343 of field osm_id of feature 11748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643344 of field osm_id of feature 11749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643345 of field osm_id of feature 11750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643346 of field osm_id of feature 11751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643347 of field osm_id of feature 11752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643347 of field osm_id of feature 11753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643348 of field osm_id of feature 11754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643349 of field osm_id of feature 11755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643349 of field osm_id of feature 11756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643350 of field osm_id of feature 11757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643350 of field osm_id of feature 11758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643351 of field osm_id of feature 11759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643352 of field osm_id of feature 11760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643353 of field osm_id of feature 11761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643354 of field osm_id of feature 11762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643355 of field osm_id of feature 11763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643356 of field osm_id of feature 11764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643357 of field osm_id of feature 11765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643357 of field osm_id of feature 11766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643358 of field osm_id of feature 11767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643359 of field osm_id of feature 11768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643359 of field osm_id of feature 11769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643360 of field osm_id of feature 11770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643360 of field osm_id of feature 11771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643361 of field osm_id of feature 11772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643362 of field osm_id of feature 11773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643363 of field osm_id of feature 11774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539643364 of field osm_id of feature 11775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539645143 of field osm_id of feature 11776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539645909 of field osm_id of feature 11777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539645910 of field osm_id of feature 11778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539646019 of field osm_id of feature 11779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539647813 of field osm_id of feature 11780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539647814 of field osm_id of feature 11781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539647815 of field osm_id of feature 11782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539647816 of field osm_id of feature 11783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539648336 of field osm_id of feature 11784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539648937 of field osm_id of feature 11785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539648938 of field osm_id of feature 11786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539649053 of field osm_id of feature 11787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539649802 of field osm_id of feature 11788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539649803 of field osm_id of feature 11789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539650455 of field osm_id of feature 11790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663312 of field osm_id of feature 11791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663313 of field osm_id of feature 11792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663314 of field osm_id of feature 11793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663315 of field osm_id of feature 11794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663316 of field osm_id of feature 11795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663317 of field osm_id of feature 11796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663318 of field osm_id of feature 11797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663319 of field osm_id of feature 11798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539663320 of field osm_id of feature 11799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671030 of field osm_id of feature 11800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671906 of field osm_id of feature 11801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671907 of field osm_id of feature 11802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671909 of field osm_id of feature 11803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671909 of field osm_id of feature 11804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671910 of field osm_id of feature 11805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671911 of field osm_id of feature 11806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539671911 of field osm_id of feature 11807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539672629 of field osm_id of feature 11808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539673073 of field osm_id of feature 11809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539673074 of field osm_id of feature 11810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539673075 of field osm_id of feature 11811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539674533 of field osm_id of feature 11812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539674534 of field osm_id of feature 11813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539674535 of field osm_id of feature 11814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539676360 of field osm_id of feature 11815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539676361 of field osm_id of feature 11816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677401 of field osm_id of feature 11817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677402 of field osm_id of feature 11818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677636 of field osm_id of feature 11819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677637 of field osm_id of feature 11820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677638 of field osm_id of feature 11821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677639 of field osm_id of feature 11822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677640 of field osm_id of feature 11823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677641 of field osm_id of feature 11824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677642 of field osm_id of feature 11825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677643 of field osm_id of feature 11826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677875 of field osm_id of feature 11827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677876 of field osm_id of feature 11828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677877 of field osm_id of feature 11829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539677878 of field osm_id of feature 11830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104802670 of field osm_id of feature 11831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104950548 of field osm_id of feature 11832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104950555 of field osm_id of feature 11833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104956822 of field osm_id of feature 11834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104956825 of field osm_id of feature 11835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104956826 of field osm_id of feature 11836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104960235 of field osm_id of feature 11837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 104960239 of field osm_id of feature 11838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539698863 of field osm_id of feature 11839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539698866 of field osm_id of feature 11840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105138310 of field osm_id of feature 11841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539698867 of field osm_id of feature 11842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539698869 of field osm_id of feature 11843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539698870 of field osm_id of feature 11844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105542999 of field osm_id of feature 11845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105543000 of field osm_id of feature 11846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105823801 of field osm_id of feature 11847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105824947 of field osm_id of feature 11848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105824956 of field osm_id of feature 11849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105824959 of field osm_id of feature 11850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826224 of field osm_id of feature 11851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826225 of field osm_id of feature 11852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826290 of field osm_id of feature 11853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826291 of field osm_id of feature 11854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826292 of field osm_id of feature 11855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826508 of field osm_id of feature 11856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826510 of field osm_id of feature 11857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826511 of field osm_id of feature 11858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826512 of field osm_id of feature 11859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826690 of field osm_id of feature 11860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826712 of field osm_id of feature 11861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539712580 of field osm_id of feature 11862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826713 of field osm_id of feature 11863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105826714 of field osm_id of feature 11864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105827140 of field osm_id of feature 11865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539712583 of field osm_id of feature 11866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105827143 of field osm_id of feature 11867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539712589 of field osm_id of feature 11868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539712589 of field osm_id of feature 11869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105865867 of field osm_id of feature 11870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105865867 of field osm_id of feature 11871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 105866981 of field osm_id of feature 11872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106087286 of field osm_id of feature 11873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106087286 of field osm_id of feature 11874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106091351 of field osm_id of feature 11875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539714482 of field osm_id of feature 11876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106091987 of field osm_id of feature 11877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539714483 of field osm_id of feature 11878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106093206 of field osm_id of feature 11879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106093207 of field osm_id of feature 11880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106093208 of field osm_id of feature 11881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106343352 of field osm_id of feature 11882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106343353 of field osm_id of feature 11883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106343432 of field osm_id of feature 11884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106343432 of field osm_id of feature 11885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715002 of field osm_id of feature 11886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106857019 of field osm_id of feature 11887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715003 of field osm_id of feature 11888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106857020 of field osm_id of feature 11889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106857362 of field osm_id of feature 11890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715109 of field osm_id of feature 11891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 106857880 of field osm_id of feature 11892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715110 of field osm_id of feature 11893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715111 of field osm_id of feature 11894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715112 of field osm_id of feature 11895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715113 of field osm_id of feature 11896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715114 of field osm_id of feature 11897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715115 of field osm_id of feature 11898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715116 of field osm_id of feature 11899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 107577825 of field osm_id of feature 11900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 107577827 of field osm_id of feature 11901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108179438 of field osm_id of feature 11902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715556 of field osm_id of feature 11903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539715558 of field osm_id of feature 11904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542249 of field osm_id of feature 11905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542250 of field osm_id of feature 11906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542261 of field osm_id of feature 11907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542270 of field osm_id of feature 11908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542273 of field osm_id of feature 11909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542275 of field osm_id of feature 11910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542296 of field osm_id of feature 11911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108542299 of field osm_id of feature 11912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716660 of field osm_id of feature 11913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716663 of field osm_id of feature 11914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 108855950 of field osm_id of feature 11915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716665 of field osm_id of feature 11916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716668 of field osm_id of feature 11917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716670 of field osm_id of feature 11918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716673 of field osm_id of feature 11919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716678 of field osm_id of feature 11920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716680 of field osm_id of feature 11921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716683 of field osm_id of feature 11922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109044021 of field osm_id of feature 11923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539716685 of field osm_id of feature 11924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109104573 of field osm_id of feature 11925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109104590 of field osm_id of feature 11926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539727618 of field osm_id of feature 11927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539727619 of field osm_id of feature 11928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539729587 of field osm_id of feature 11929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539729589 of field osm_id of feature 11930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401030 of field osm_id of feature 11931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401032 of field osm_id of feature 11932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401032 of field osm_id of feature 11933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401033 of field osm_id of feature 11934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401035 of field osm_id of feature 11935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401038 of field osm_id of feature 11936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401038 of field osm_id of feature 11937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401040 of field osm_id of feature 11938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401041 of field osm_id of feature 11939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109401042 of field osm_id of feature 11940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109403238 of field osm_id of feature 11941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109404023 of field osm_id of feature 11942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109404025 of field osm_id of feature 11943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109687926 of field osm_id of feature 11944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109695785 of field osm_id of feature 11945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109695787 of field osm_id of feature 11946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109695799 of field osm_id of feature 11947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109695804 of field osm_id of feature 11948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109738259 of field osm_id of feature 11949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109738262 of field osm_id of feature 11950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109738268 of field osm_id of feature 11951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738498 of field osm_id of feature 11952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738500 of field osm_id of feature 11953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109849488 of field osm_id of feature 11954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738503 of field osm_id of feature 11955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109849490 of field osm_id of feature 11956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738505 of field osm_id of feature 11957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109849491 of field osm_id of feature 11958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738507 of field osm_id of feature 11959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109849493 of field osm_id of feature 11960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738510 of field osm_id of feature 11961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 109974279 of field osm_id of feature 11962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738513 of field osm_id of feature 11963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539738515 of field osm_id of feature 11964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741647 of field osm_id of feature 11965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741649 of field osm_id of feature 11966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110616722 of field osm_id of feature 11967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741651 of field osm_id of feature 11968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110616723 of field osm_id of feature 11969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741653 of field osm_id of feature 11970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110616806 of field osm_id of feature 11971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741655 of field osm_id of feature 11972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110847046 of field osm_id of feature 11973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539741656 of field osm_id of feature 11974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110847048 of field osm_id of feature 11975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110847056 of field osm_id of feature 11976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852794 of field osm_id of feature 11977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852833 of field osm_id of feature 11978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852838 of field osm_id of feature 11979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852849 of field osm_id of feature 11980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852850 of field osm_id of feature 11981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852866 of field osm_id of feature 11982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852869 of field osm_id of feature 11983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110852897 of field osm_id of feature 11984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853322 of field osm_id of feature 11985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853323 of field osm_id of feature 11986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853326 of field osm_id of feature 11987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853482 of field osm_id of feature 11988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853484 of field osm_id of feature 11989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853494 of field osm_id of feature 11990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853608 of field osm_id of feature 11991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853609 of field osm_id of feature 11992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853614 of field osm_id of feature 11993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853668 of field osm_id of feature 11994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853669 of field osm_id of feature 11995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853670 of field osm_id of feature 11996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853725 of field osm_id of feature 11997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853846 of field osm_id of feature 11998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853847 of field osm_id of feature 11999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853858 of field osm_id of feature 12000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853860 of field osm_id of feature 12001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853928 of field osm_id of feature 12002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853936 of field osm_id of feature 12003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110853938 of field osm_id of feature 12004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854001 of field osm_id of feature 12005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854002 of field osm_id of feature 12006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854008 of field osm_id of feature 12007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854026 of field osm_id of feature 12008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854034 of field osm_id of feature 12009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854070 of field osm_id of feature 12010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854071 of field osm_id of feature 12011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854072 of field osm_id of feature 12012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854088 of field osm_id of feature 12013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854089 of field osm_id of feature 12014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854118 of field osm_id of feature 12015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854119 of field osm_id of feature 12016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854153 of field osm_id of feature 12017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854154 of field osm_id of feature 12018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854330 of field osm_id of feature 12019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854349 of field osm_id of feature 12020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854705 of field osm_id of feature 12021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854929 of field osm_id of feature 12022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854934 of field osm_id of feature 12023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854935 of field osm_id of feature 12024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110854936 of field osm_id of feature 12025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855003 of field osm_id of feature 12026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855107 of field osm_id of feature 12027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855134 of field osm_id of feature 12028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855173 of field osm_id of feature 12029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855195 of field osm_id of feature 12030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855219 of field osm_id of feature 12031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855220 of field osm_id of feature 12032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855221 of field osm_id of feature 12033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110855222 of field osm_id of feature 12034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858098 of field osm_id of feature 12035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858115 of field osm_id of feature 12036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858116 of field osm_id of feature 12037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858118 of field osm_id of feature 12038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858184 of field osm_id of feature 12039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858185 of field osm_id of feature 12040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858202 of field osm_id of feature 12041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858334 of field osm_id of feature 12042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858335 of field osm_id of feature 12043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858336 of field osm_id of feature 12044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858921 of field osm_id of feature 12045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858922 of field osm_id of feature 12046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858923 of field osm_id of feature 12047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858924 of field osm_id of feature 12048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858925 of field osm_id of feature 12049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858927 of field osm_id of feature 12050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858928 of field osm_id of feature 12051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858929 of field osm_id of feature 12052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858930 of field osm_id of feature 12053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858931 of field osm_id of feature 12054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858932 of field osm_id of feature 12055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858933 of field osm_id of feature 12056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858934 of field osm_id of feature 12057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858935 of field osm_id of feature 12058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 110858936 of field osm_id of feature 12059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111088475 of field osm_id of feature 12060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111280125 of field osm_id of feature 12061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283746 of field osm_id of feature 12062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283747 of field osm_id of feature 12063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283749 of field osm_id of feature 12064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283750 of field osm_id of feature 12065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283751 of field osm_id of feature 12066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111283947 of field osm_id of feature 12067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111284145 of field osm_id of feature 12068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111284191 of field osm_id of feature 12069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111284235 of field osm_id of feature 12070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285145 of field osm_id of feature 12071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285314 of field osm_id of feature 12072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285316 of field osm_id of feature 12073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539746731 of field osm_id of feature 12074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285317 of field osm_id of feature 12075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539746733 of field osm_id of feature 12076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285318 of field osm_id of feature 12077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539746736 of field osm_id of feature 12078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285319 of field osm_id of feature 12079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539746737 of field osm_id of feature 12080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285386 of field osm_id of feature 12081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285389 of field osm_id of feature 12082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285392 of field osm_id of feature 12083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285401 of field osm_id of feature 12084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285491 of field osm_id of feature 12085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111285558 of field osm_id of feature 12086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111290019 of field osm_id of feature 12087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111290020 of field osm_id of feature 12088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111290021 of field osm_id of feature 12089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111290122 of field osm_id of feature 12090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111293455 of field osm_id of feature 12091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111293490 of field osm_id of feature 12092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111293491 of field osm_id of feature 12093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111497046 of field osm_id of feature 12094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111497047 of field osm_id of feature 12095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592116 of field osm_id of feature 12096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592119 of field osm_id of feature 12097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592120 of field osm_id of feature 12098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592122 of field osm_id of feature 12099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592124 of field osm_id of feature 12100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592125 of field osm_id of feature 12101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592127 of field osm_id of feature 12102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592129 of field osm_id of feature 12103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592130 of field osm_id of feature 12104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592874 of field osm_id of feature 12105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592875 of field osm_id of feature 12106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592876 of field osm_id of feature 12107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111592877 of field osm_id of feature 12108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111737899 of field osm_id of feature 12109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111737899 of field osm_id of feature 12110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111818161 of field osm_id of feature 12111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111818170 of field osm_id of feature 12112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 111818188 of field osm_id of feature 12113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112119030 of field osm_id of feature 12114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539748065 of field osm_id of feature 12115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112127294 of field osm_id of feature 12116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112127299 of field osm_id of feature 12117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112127300 of field osm_id of feature 12118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112127304 of field osm_id of feature 12119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112127308 of field osm_id of feature 12120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749909 of field osm_id of feature 12121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749910 of field osm_id of feature 12122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749911 of field osm_id of feature 12123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749912 of field osm_id of feature 12124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112154347 of field osm_id of feature 12125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749913 of field osm_id of feature 12126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112154494 of field osm_id of feature 12127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749914 of field osm_id of feature 12128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 112154495 of field osm_id of feature 12129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749915 of field osm_id of feature 12130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749916 of field osm_id of feature 12131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749917 of field osm_id of feature 12132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749918 of field osm_id of feature 12133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749919 of field osm_id of feature 12134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749920 of field osm_id of feature 12135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749921 of field osm_id of feature 12136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749922 of field osm_id of feature 12137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749923 of field osm_id of feature 12138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749924 of field osm_id of feature 12139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749925 of field osm_id of feature 12140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749926 of field osm_id of feature 12141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749927 of field osm_id of feature 12142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749928 of field osm_id of feature 12143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749929 of field osm_id of feature 12144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749930 of field osm_id of feature 12145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113101743 of field osm_id of feature 12146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113101744 of field osm_id of feature 12147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749933 of field osm_id of feature 12148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113101745 of field osm_id of feature 12149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749934 of field osm_id of feature 12150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113101746 of field osm_id of feature 12151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749935 of field osm_id of feature 12152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749936 of field osm_id of feature 12153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113101748 of field osm_id of feature 12154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749937 of field osm_id of feature 12155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749938 of field osm_id of feature 12156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749939 of field osm_id of feature 12157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539749940 of field osm_id of feature 12158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113712039 of field osm_id of feature 12159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113712040 of field osm_id of feature 12160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113712041 of field osm_id of feature 12161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 113712043 of field osm_id of feature 12162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237271 of field osm_id of feature 12163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237272 of field osm_id of feature 12164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237273 of field osm_id of feature 12165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237277 of field osm_id of feature 12166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237278 of field osm_id of feature 12167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237281 of field osm_id of feature 12168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114237287 of field osm_id of feature 12169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114679893 of field osm_id of feature 12170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 114933554 of field osm_id of feature 12171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115040716 of field osm_id of feature 12172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115096946 of field osm_id of feature 12173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115096948 of field osm_id of feature 12174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115096951 of field osm_id of feature 12175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115096956 of field osm_id of feature 12176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115096959 of field osm_id of feature 12177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751201 of field osm_id of feature 12178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751202 of field osm_id of feature 12179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115102799 of field osm_id of feature 12180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115102799 of field osm_id of feature 12181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751203 of field osm_id of feature 12182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115102807 of field osm_id of feature 12183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115102807 of field osm_id of feature 12184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751206 of field osm_id of feature 12185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751208 of field osm_id of feature 12186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115230505 of field osm_id of feature 12187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751209 of field osm_id of feature 12188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751211 of field osm_id of feature 12189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751212 of field osm_id of feature 12190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751214 of field osm_id of feature 12191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751215 of field osm_id of feature 12192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751217 of field osm_id of feature 12193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539751219 of field osm_id of feature 12194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539753840 of field osm_id of feature 12195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755123 of field osm_id of feature 12196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115441259 of field osm_id of feature 12197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115441338 of field osm_id of feature 12198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755570 of field osm_id of feature 12199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755571 of field osm_id of feature 12200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755572 of field osm_id of feature 12201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626264 of field osm_id of feature 12202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755573 of field osm_id of feature 12203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626265 of field osm_id of feature 12204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626266 of field osm_id of feature 12205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626266 of field osm_id of feature 12206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626267 of field osm_id of feature 12207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115626268 of field osm_id of feature 12208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755712 of field osm_id of feature 12209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755713 of field osm_id of feature 12210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755714 of field osm_id of feature 12211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115709730 of field osm_id of feature 12212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115709732 of field osm_id of feature 12213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755766 of field osm_id of feature 12214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115709733 of field osm_id of feature 12215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755767 of field osm_id of feature 12216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755768 of field osm_id of feature 12217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812033 of field osm_id of feature 12218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755769 of field osm_id of feature 12219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812034 of field osm_id of feature 12220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812035 of field osm_id of feature 12221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812035 of field osm_id of feature 12222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812037 of field osm_id of feature 12223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812038 of field osm_id of feature 12224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812039 of field osm_id of feature 12225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755774 of field osm_id of feature 12226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812040 of field osm_id of feature 12227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812041 of field osm_id of feature 12228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115812042 of field osm_id of feature 12229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755777 of field osm_id of feature 12230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755778 of field osm_id of feature 12231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115818897 of field osm_id of feature 12232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115818898 of field osm_id of feature 12233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115818899 of field osm_id of feature 12234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115818900 of field osm_id of feature 12235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826790 of field osm_id of feature 12236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755786 of field osm_id of feature 12237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826793 of field osm_id of feature 12238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826794 of field osm_id of feature 12239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826796 of field osm_id of feature 12240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826800 of field osm_id of feature 12241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826803 of field osm_id of feature 12242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826806 of field osm_id of feature 12243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826807 of field osm_id of feature 12244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115826808 of field osm_id of feature 12245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539755796 of field osm_id of feature 12246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827240 of field osm_id of feature 12247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827240 of field osm_id of feature 12248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827242 of field osm_id of feature 12249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827245 of field osm_id of feature 12250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827247 of field osm_id of feature 12251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115827251 of field osm_id of feature 12252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843654 of field osm_id of feature 12253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843655 of field osm_id of feature 12254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843656 of field osm_id of feature 12255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843656 of field osm_id of feature 12256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843657 of field osm_id of feature 12257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115843659 of field osm_id of feature 12258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115847412 of field osm_id of feature 12259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115847412 of field osm_id of feature 12260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115847414 of field osm_id of feature 12261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115847420 of field osm_id of feature 12262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115847423 of field osm_id of feature 12263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115848536 of field osm_id of feature 12264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 115851512 of field osm_id of feature 12265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116254491 of field osm_id of feature 12266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116254492 of field osm_id of feature 12267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116254493 of field osm_id of feature 12268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116590104 of field osm_id of feature 12269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116590105 of field osm_id of feature 12270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116590106 of field osm_id of feature 12271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116591365 of field osm_id of feature 12272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116591367 of field osm_id of feature 12273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116591368 of field osm_id of feature 12274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539760144 of field osm_id of feature 12275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116591370 of field osm_id of feature 12276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539760145 of field osm_id of feature 12277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116683972 of field osm_id of feature 12278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116687148 of field osm_id of feature 12279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116688048 of field osm_id of feature 12280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116688896 of field osm_id of feature 12281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116688900 of field osm_id of feature 12282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116688903 of field osm_id of feature 12283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539761208 of field osm_id of feature 12284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539761483 of field osm_id of feature 12285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539761486 of field osm_id of feature 12286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116782114 of field osm_id of feature 12287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770649 of field osm_id of feature 12288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770650 of field osm_id of feature 12289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770651 of field osm_id of feature 12290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770652 of field osm_id of feature 12291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770653 of field osm_id of feature 12292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770654 of field osm_id of feature 12293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770655 of field osm_id of feature 12294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770656 of field osm_id of feature 12295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770657 of field osm_id of feature 12296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770658 of field osm_id of feature 12297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770659 of field osm_id of feature 12298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770660 of field osm_id of feature 12299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116782190 of field osm_id of feature 12300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770661 of field osm_id of feature 12301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116782191 of field osm_id of feature 12302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770662 of field osm_id of feature 12303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770663 of field osm_id of feature 12304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770664 of field osm_id of feature 12305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770665 of field osm_id of feature 12306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770666 of field osm_id of feature 12307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770667 of field osm_id of feature 12308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770668 of field osm_id of feature 12309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770669 of field osm_id of feature 12310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770670 of field osm_id of feature 12311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770671 of field osm_id of feature 12312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770672 of field osm_id of feature 12313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116796554 of field osm_id of feature 12314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770673 of field osm_id of feature 12315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116796556 of field osm_id of feature 12316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116796556 of field osm_id of feature 12317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770674 of field osm_id of feature 12318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116796563 of field osm_id of feature 12319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116796563 of field osm_id of feature 12320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770675 of field osm_id of feature 12321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770676 of field osm_id of feature 12322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770677 of field osm_id of feature 12323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116802860 of field osm_id of feature 12324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770678 of field osm_id of feature 12325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770679 of field osm_id of feature 12326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770680 of field osm_id of feature 12327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770680 of field osm_id of feature 12328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116818112 of field osm_id of feature 12329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770681 of field osm_id of feature 12330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770681 of field osm_id of feature 12331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770682 of field osm_id of feature 12332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770683 of field osm_id of feature 12333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770683 of field osm_id of feature 12334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116818157 of field osm_id of feature 12335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770684 of field osm_id of feature 12336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770685 of field osm_id of feature 12337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116818170 of field osm_id of feature 12338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770686 of field osm_id of feature 12339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116818172 of field osm_id of feature 12340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770687 of field osm_id of feature 12341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770688 of field osm_id of feature 12342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770688 of field osm_id of feature 12343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770689 of field osm_id of feature 12344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770690 of field osm_id of feature 12345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770691 of field osm_id of feature 12346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 116905046 of field osm_id of feature 12347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770692 of field osm_id of feature 12348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770693 of field osm_id of feature 12349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539770694 of field osm_id of feature 12350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771055 of field osm_id of feature 12351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771056 of field osm_id of feature 12352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771057 of field osm_id of feature 12353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771057 of field osm_id of feature 12354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035194 of field osm_id of feature 12355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035194 of field osm_id of feature 12356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771058 of field osm_id of feature 12357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035195 of field osm_id of feature 12358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771059 of field osm_id of feature 12359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035197 of field osm_id of feature 12360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771060 of field osm_id of feature 12361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771060 of field osm_id of feature 12362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035198 of field osm_id of feature 12363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771061 of field osm_id of feature 12364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035199 of field osm_id of feature 12365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771062 of field osm_id of feature 12366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035200 of field osm_id of feature 12367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539771063 of field osm_id of feature 12368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035201 of field osm_id of feature 12369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035201 of field osm_id of feature 12370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776581 of field osm_id of feature 12371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035202 of field osm_id of feature 12372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776636 of field osm_id of feature 12373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035203 of field osm_id of feature 12374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776637 of field osm_id of feature 12375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035205 of field osm_id of feature 12376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776638 of field osm_id of feature 12377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035206 of field osm_id of feature 12378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776639 of field osm_id of feature 12379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035207 of field osm_id of feature 12380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776640 of field osm_id of feature 12381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035208 of field osm_id of feature 12382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776641 of field osm_id of feature 12383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035209 of field osm_id of feature 12384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776642 of field osm_id of feature 12385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035210 of field osm_id of feature 12386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776643 of field osm_id of feature 12387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035211 of field osm_id of feature 12388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539776644 of field osm_id of feature 12389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035212 of field osm_id of feature 12390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777698 of field osm_id of feature 12391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035213 of field osm_id of feature 12392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777699 of field osm_id of feature 12393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777699 of field osm_id of feature 12394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035214 of field osm_id of feature 12395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777700 of field osm_id of feature 12396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117035215 of field osm_id of feature 12397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777701 of field osm_id of feature 12398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777701 of field osm_id of feature 12399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038420 of field osm_id of feature 12400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777702 of field osm_id of feature 12401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038425 of field osm_id of feature 12402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777703 of field osm_id of feature 12403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038427 of field osm_id of feature 12404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777704 of field osm_id of feature 12405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038429 of field osm_id of feature 12406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777705 of field osm_id of feature 12407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038430 of field osm_id of feature 12408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777706 of field osm_id of feature 12409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038432 of field osm_id of feature 12410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777707 of field osm_id of feature 12411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038434 of field osm_id of feature 12412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777708 of field osm_id of feature 12413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038441 of field osm_id of feature 12414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777709 of field osm_id of feature 12415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038446 of field osm_id of feature 12416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777710 of field osm_id of feature 12417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038449 of field osm_id of feature 12418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777711 of field osm_id of feature 12419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038450 of field osm_id of feature 12420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777712 of field osm_id of feature 12421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038452 of field osm_id of feature 12422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777713 of field osm_id of feature 12423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038456 of field osm_id of feature 12424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777714 of field osm_id of feature 12425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117038464 of field osm_id of feature 12426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777715 of field osm_id of feature 12427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777716 of field osm_id of feature 12428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777717 of field osm_id of feature 12429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777718 of field osm_id of feature 12430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777719 of field osm_id of feature 12431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041289 of field osm_id of feature 12432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777720 of field osm_id of feature 12433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777721 of field osm_id of feature 12434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041293 of field osm_id of feature 12435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777722 of field osm_id of feature 12436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041297 of field osm_id of feature 12437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539777723 of field osm_id of feature 12438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778152 of field osm_id of feature 12439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041301 of field osm_id of feature 12440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778153 of field osm_id of feature 12441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041302 of field osm_id of feature 12442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778154 of field osm_id of feature 12443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041305 of field osm_id of feature 12444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778155 of field osm_id of feature 12445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778156 of field osm_id of feature 12446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041310 of field osm_id of feature 12447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539778157 of field osm_id of feature 12448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041311 of field osm_id of feature 12449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779259 of field osm_id of feature 12450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779260 of field osm_id of feature 12451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117041963 of field osm_id of feature 12452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779471 of field osm_id of feature 12453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779472 of field osm_id of feature 12454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779473 of field osm_id of feature 12455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779474 of field osm_id of feature 12456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779618 of field osm_id of feature 12457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779619 of field osm_id of feature 12458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117042702 of field osm_id of feature 12459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779776 of field osm_id of feature 12460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779778 of field osm_id of feature 12461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539779781 of field osm_id of feature 12462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539780284 of field osm_id of feature 12463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539780672 of field osm_id of feature 12464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539781400 of field osm_id of feature 12465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117043438 of field osm_id of feature 12466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539781512 of field osm_id of feature 12467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539781673 of field osm_id of feature 12468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539781674 of field osm_id of feature 12469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117044169 of field osm_id of feature 12470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539791554 of field osm_id of feature 12471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539791682 of field osm_id of feature 12472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539791683 of field osm_id of feature 12473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117046291 of field osm_id of feature 12474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539792639 of field osm_id of feature 12475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539792644 of field osm_id of feature 12476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539793010 of field osm_id of feature 12477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539793011 of field osm_id of feature 12478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539793652 of field osm_id of feature 12479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539832750 of field osm_id of feature 12480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539840382 of field osm_id of feature 12481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539844636 of field osm_id of feature 12482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117055160 of field osm_id of feature 12483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539844637 of field osm_id of feature 12484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539844638 of field osm_id of feature 12485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539844638 of field osm_id of feature 12486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539844639 of field osm_id of feature 12487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117055178 of field osm_id of feature 12488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539845850 of field osm_id of feature 12489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539848381 of field osm_id of feature 12490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539848382 of field osm_id of feature 12491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539861095 of field osm_id of feature 12492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539861098 of field osm_id of feature 12493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539862038 of field osm_id of feature 12494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539862039 of field osm_id of feature 12495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539862040 of field osm_id of feature 12496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539863119 of field osm_id of feature 12497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 539864139 of field osm_id of feature 12498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117220639 of field osm_id of feature 12499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420260 of field osm_id of feature 12500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420262 of field osm_id of feature 12501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420264 of field osm_id of feature 12502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420276 of field osm_id of feature 12503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420277 of field osm_id of feature 12504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420278 of field osm_id of feature 12505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117420280 of field osm_id of feature 12506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117599851 of field osm_id of feature 12507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117599854 of field osm_id of feature 12508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117667506 of field osm_id of feature 12509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117792053 of field osm_id of feature 12510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117815345 of field osm_id of feature 12511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117828000 of field osm_id of feature 12512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117858208 of field osm_id of feature 12513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117925367 of field osm_id of feature 12514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 117994300 of field osm_id of feature 12515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 118024111 of field osm_id of feature 12516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 118881584 of field osm_id of feature 12517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 118994816 of field osm_id of feature 12518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 118994819 of field osm_id of feature 12519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540024406 of field osm_id of feature 12520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540157289 of field osm_id of feature 12521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540157293 of field osm_id of feature 12522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119060317 of field osm_id of feature 12523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119060319 of field osm_id of feature 12524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540221911 of field osm_id of feature 12525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119663631 of field osm_id of feature 12526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119663633 of field osm_id of feature 12527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119663634 of field osm_id of feature 12528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673754 of field osm_id of feature 12529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673755 of field osm_id of feature 12530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673760 of field osm_id of feature 12531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673761 of field osm_id of feature 12532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673764 of field osm_id of feature 12533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673767 of field osm_id of feature 12534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673769 of field osm_id of feature 12535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119673771 of field osm_id of feature 12536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681283 of field osm_id of feature 12537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681285 of field osm_id of feature 12538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681286 of field osm_id of feature 12539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681288 of field osm_id of feature 12540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681289 of field osm_id of feature 12541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681291 of field osm_id of feature 12542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119681294 of field osm_id of feature 12543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119685166 of field osm_id of feature 12544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540226191 of field osm_id of feature 12545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687383 of field osm_id of feature 12546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540226192 of field osm_id of feature 12547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687384 of field osm_id of feature 12548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540226193 of field osm_id of feature 12549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687385 of field osm_id of feature 12550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540226194 of field osm_id of feature 12551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687386 of field osm_id of feature 12552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687387 of field osm_id of feature 12553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687391 of field osm_id of feature 12554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687395 of field osm_id of feature 12555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119687396 of field osm_id of feature 12556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119688142 of field osm_id of feature 12557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119688146 of field osm_id of feature 12558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119723364 of field osm_id of feature 12559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119723772 of field osm_id of feature 12560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119724231 of field osm_id of feature 12561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801704 of field osm_id of feature 12562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801706 of field osm_id of feature 12563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801707 of field osm_id of feature 12564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801710 of field osm_id of feature 12565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801712 of field osm_id of feature 12566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801714 of field osm_id of feature 12567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801717 of field osm_id of feature 12568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119801718 of field osm_id of feature 12569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119805559 of field osm_id of feature 12570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119805560 of field osm_id of feature 12571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540227607 of field osm_id of feature 12572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540227972 of field osm_id of feature 12573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540227974 of field osm_id of feature 12574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540227977 of field osm_id of feature 12575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540227978 of field osm_id of feature 12576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119885170 of field osm_id of feature 12577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119885171 of field osm_id of feature 12578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119885172 of field osm_id of feature 12579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119889068 of field osm_id of feature 12580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119889068 of field osm_id of feature 12581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119889069 of field osm_id of feature 12582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119889070 of field osm_id of feature 12583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119889071 of field osm_id of feature 12584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933239 of field osm_id of feature 12585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933240 of field osm_id of feature 12586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933241 of field osm_id of feature 12587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933242 of field osm_id of feature 12588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933244 of field osm_id of feature 12589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933246 of field osm_id of feature 12590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933247 of field osm_id of feature 12591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933249 of field osm_id of feature 12592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933253 of field osm_id of feature 12593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933253 of field osm_id of feature 12594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933254 of field osm_id of feature 12595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933254 of field osm_id of feature 12596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933255 of field osm_id of feature 12597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933256 of field osm_id of feature 12598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933257 of field osm_id of feature 12599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933259 of field osm_id of feature 12600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933260 of field osm_id of feature 12601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933262 of field osm_id of feature 12602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119933263 of field osm_id of feature 12603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937068 of field osm_id of feature 12604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937068 of field osm_id of feature 12605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937070 of field osm_id of feature 12606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937071 of field osm_id of feature 12607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937074 of field osm_id of feature 12608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937076 of field osm_id of feature 12609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119937078 of field osm_id of feature 12610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119941775 of field osm_id of feature 12611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119996583 of field osm_id of feature 12612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119996584 of field osm_id of feature 12613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119996585 of field osm_id of feature 12614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119996586 of field osm_id of feature 12615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 119996893 of field osm_id of feature 12616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106010 of field osm_id of feature 12617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106010 of field osm_id of feature 12618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106012 of field osm_id of feature 12619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106014 of field osm_id of feature 12620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106014 of field osm_id of feature 12621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106222 of field osm_id of feature 12622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106222 of field osm_id of feature 12623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106495 of field osm_id of feature 12624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120106636 of field osm_id of feature 12625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120169547 of field osm_id of feature 12626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120407152 of field osm_id of feature 12627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120407161 of field osm_id of feature 12628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120408791 of field osm_id of feature 12629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120423211 of field osm_id of feature 12630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120423233 of field osm_id of feature 12631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120423243 of field osm_id of feature 12632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120423248 of field osm_id of feature 12633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120423251 of field osm_id of feature 12634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120424055 of field osm_id of feature 12635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120487399 of field osm_id of feature 12636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120717322 of field osm_id of feature 12637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120719658 of field osm_id of feature 12638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 120719659 of field osm_id of feature 12639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235880 of field osm_id of feature 12640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235881 of field osm_id of feature 12641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235882 of field osm_id of feature 12642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235883 of field osm_id of feature 12643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121157363 of field osm_id of feature 12644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163932 of field osm_id of feature 12645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163933 of field osm_id of feature 12646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163934 of field osm_id of feature 12647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235896 of field osm_id of feature 12648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163936 of field osm_id of feature 12649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163937 of field osm_id of feature 12650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163940 of field osm_id of feature 12651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235902 of field osm_id of feature 12652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163942 of field osm_id of feature 12653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235903 of field osm_id of feature 12654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163944 of field osm_id of feature 12655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235904 of field osm_id of feature 12656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163947 of field osm_id of feature 12657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235905 of field osm_id of feature 12658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163948 of field osm_id of feature 12659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540235906 of field osm_id of feature 12660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163951 of field osm_id of feature 12661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163952 of field osm_id of feature 12662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163953 of field osm_id of feature 12663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163954 of field osm_id of feature 12664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121163955 of field osm_id of feature 12665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172747 of field osm_id of feature 12666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172748 of field osm_id of feature 12667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172749 of field osm_id of feature 12668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172750 of field osm_id of feature 12669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172751 of field osm_id of feature 12670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172752 of field osm_id of feature 12671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172753 of field osm_id of feature 12672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121172754 of field osm_id of feature 12673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121175255 of field osm_id of feature 12674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121175256 of field osm_id of feature 12675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121175257 of field osm_id of feature 12676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121175258 of field osm_id of feature 12677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121275835 of field osm_id of feature 12678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121275838 of field osm_id of feature 12679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291660 of field osm_id of feature 12680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291661 of field osm_id of feature 12681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291661 of field osm_id of feature 12682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291663 of field osm_id of feature 12683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291664 of field osm_id of feature 12684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291668 of field osm_id of feature 12685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291669 of field osm_id of feature 12686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121291675 of field osm_id of feature 12687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516436 of field osm_id of feature 12688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516438 of field osm_id of feature 12689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516439 of field osm_id of feature 12690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516449 of field osm_id of feature 12691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516451 of field osm_id of feature 12692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121516453 of field osm_id of feature 12693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121635445 of field osm_id of feature 12694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121753260 of field osm_id of feature 12695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121753261 of field osm_id of feature 12696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121753596 of field osm_id of feature 12697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762747 of field osm_id of feature 12698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762748 of field osm_id of feature 12699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762749 of field osm_id of feature 12700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762750 of field osm_id of feature 12701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762751 of field osm_id of feature 12702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762752 of field osm_id of feature 12703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121762753 of field osm_id of feature 12704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121775991 of field osm_id of feature 12705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121854904 of field osm_id of feature 12706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121854911 of field osm_id of feature 12707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121854913 of field osm_id of feature 12708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121854915 of field osm_id of feature 12709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121854917 of field osm_id of feature 12710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121874705 of field osm_id of feature 12711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121874735 of field osm_id of feature 12712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121874736 of field osm_id of feature 12713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121874739 of field osm_id of feature 12714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121874809 of field osm_id of feature 12715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121875187 of field osm_id of feature 12716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121875187 of field osm_id of feature 12717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121875956 of field osm_id of feature 12718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121875966 of field osm_id of feature 12719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879124 of field osm_id of feature 12720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879126 of field osm_id of feature 12721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879127 of field osm_id of feature 12722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879128 of field osm_id of feature 12723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879131 of field osm_id of feature 12724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879132 of field osm_id of feature 12725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879133 of field osm_id of feature 12726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879137 of field osm_id of feature 12727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540244459 of field osm_id of feature 12728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879139 of field osm_id of feature 12729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879139 of field osm_id of feature 12730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879141 of field osm_id of feature 12731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879141 of field osm_id of feature 12732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879145 of field osm_id of feature 12733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879147 of field osm_id of feature 12734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879147 of field osm_id of feature 12735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540244689 of field osm_id of feature 12736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121879148 of field osm_id of feature 12737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540244690 of field osm_id of feature 12738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880143 of field osm_id of feature 12739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540245401 of field osm_id of feature 12740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880144 of field osm_id of feature 12741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540245402 of field osm_id of feature 12742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880145 of field osm_id of feature 12743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540245403 of field osm_id of feature 12744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880345 of field osm_id of feature 12745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540245404 of field osm_id of feature 12746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880524 of field osm_id of feature 12747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880525 of field osm_id of feature 12748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121880525 of field osm_id of feature 12749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121881092 of field osm_id of feature 12750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121881933 of field osm_id of feature 12751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121881939 of field osm_id of feature 12752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540249251 of field osm_id of feature 12753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540249252 of field osm_id of feature 12754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882983 of field osm_id of feature 12755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882984 of field osm_id of feature 12756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882986 of field osm_id of feature 12757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882987 of field osm_id of feature 12758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882988 of field osm_id of feature 12759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882989 of field osm_id of feature 12760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121882989 of field osm_id of feature 12761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540249264 of field osm_id of feature 12762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883039 of field osm_id of feature 12763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883041 of field osm_id of feature 12764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883042 of field osm_id of feature 12765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883043 of field osm_id of feature 12766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883247 of field osm_id of feature 12767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883639 of field osm_id of feature 12768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883640 of field osm_id of feature 12769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883641 of field osm_id of feature 12770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883642 of field osm_id of feature 12771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883643 of field osm_id of feature 12772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883644 of field osm_id of feature 12773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121883645 of field osm_id of feature 12774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121886000 of field osm_id of feature 12775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121886001 of field osm_id of feature 12776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895648 of field osm_id of feature 12777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895649 of field osm_id of feature 12778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895651 of field osm_id of feature 12779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895652 of field osm_id of feature 12780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895653 of field osm_id of feature 12781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121895655 of field osm_id of feature 12782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121897407 of field osm_id of feature 12783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121897408 of field osm_id of feature 12784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121897982 of field osm_id of feature 12785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121898691 of field osm_id of feature 12786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121898691 of field osm_id of feature 12787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901162 of field osm_id of feature 12788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901163 of field osm_id of feature 12789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901164 of field osm_id of feature 12790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901165 of field osm_id of feature 12791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901166 of field osm_id of feature 12792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901167 of field osm_id of feature 12793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121901168 of field osm_id of feature 12794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902739 of field osm_id of feature 12795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902740 of field osm_id of feature 12796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902741 of field osm_id of feature 12797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902742 of field osm_id of feature 12798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902743 of field osm_id of feature 12799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121902744 of field osm_id of feature 12800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121903651 of field osm_id of feature 12801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121903651 of field osm_id of feature 12802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121903655 of field osm_id of feature 12803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121906567 of field osm_id of feature 12804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121906568 of field osm_id of feature 12805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121906570 of field osm_id of feature 12806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 121906574 of field osm_id of feature 12807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122065454 of field osm_id of feature 12808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067627 of field osm_id of feature 12809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067627 of field osm_id of feature 12810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067629 of field osm_id of feature 12811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067630 of field osm_id of feature 12812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067631 of field osm_id of feature 12813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122067631 of field osm_id of feature 12814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211060 of field osm_id of feature 12815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211061 of field osm_id of feature 12816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211769 of field osm_id of feature 12817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211770 of field osm_id of feature 12818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211771 of field osm_id of feature 12819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211772 of field osm_id of feature 12820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211773 of field osm_id of feature 12821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211774 of field osm_id of feature 12822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211775 of field osm_id of feature 12823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211777 of field osm_id of feature 12824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211778 of field osm_id of feature 12825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211779 of field osm_id of feature 12826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122211780 of field osm_id of feature 12827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122212130 of field osm_id of feature 12828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122212131 of field osm_id of feature 12829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122212209 of field osm_id of feature 12830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122212210 of field osm_id of feature 12831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243530 of field osm_id of feature 12832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243531 of field osm_id of feature 12833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540251372 of field osm_id of feature 12834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243534 of field osm_id of feature 12835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540251375 of field osm_id of feature 12836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243536 of field osm_id of feature 12837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243537 of field osm_id of feature 12838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243538 of field osm_id of feature 12839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243539 of field osm_id of feature 12840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243541 of field osm_id of feature 12841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243543 of field osm_id of feature 12842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243548 of field osm_id of feature 12843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243549 of field osm_id of feature 12844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243552 of field osm_id of feature 12845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243556 of field osm_id of feature 12846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243557 of field osm_id of feature 12847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243560 of field osm_id of feature 12848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122243563 of field osm_id of feature 12849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122244660 of field osm_id of feature 12850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122245154 of field osm_id of feature 12851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122245156 of field osm_id of feature 12852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258962 of field osm_id of feature 12853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258963 of field osm_id of feature 12854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258964 of field osm_id of feature 12855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258966 of field osm_id of feature 12856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258967 of field osm_id of feature 12857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258970 of field osm_id of feature 12858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258972 of field osm_id of feature 12859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258973 of field osm_id of feature 12860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258974 of field osm_id of feature 12861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258975 of field osm_id of feature 12862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122258976 of field osm_id of feature 12863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122259593 of field osm_id of feature 12864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122259594 of field osm_id of feature 12865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122259595 of field osm_id of feature 12866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122259882 of field osm_id of feature 12867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122259886 of field osm_id of feature 12868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122290403 of field osm_id of feature 12869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122290405 of field osm_id of feature 12870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122404291 of field osm_id of feature 12871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122404294 of field osm_id of feature 12872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122404298 of field osm_id of feature 12873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122408186 of field osm_id of feature 12874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122542043 of field osm_id of feature 12875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122670761 of field osm_id of feature 12876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122671634 of field osm_id of feature 12877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122672634 of field osm_id of feature 12878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122673166 of field osm_id of feature 12879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122726664 of field osm_id of feature 12880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122726665 of field osm_id of feature 12881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122727336 of field osm_id of feature 12882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122727338 of field osm_id of feature 12883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122727339 of field osm_id of feature 12884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728543 of field osm_id of feature 12885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728544 of field osm_id of feature 12886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728545 of field osm_id of feature 12887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728546 of field osm_id of feature 12888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728547 of field osm_id of feature 12889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122728549 of field osm_id of feature 12890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122886543 of field osm_id of feature 12891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 122886544 of field osm_id of feature 12892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123098395 of field osm_id of feature 12893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220238 of field osm_id of feature 12894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220239 of field osm_id of feature 12895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220240 of field osm_id of feature 12896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220241 of field osm_id of feature 12897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220700 of field osm_id of feature 12898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220700 of field osm_id of feature 12899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123220705 of field osm_id of feature 12900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267192 of field osm_id of feature 12901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267196 of field osm_id of feature 12902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267197 of field osm_id of feature 12903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267204 of field osm_id of feature 12904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267214 of field osm_id of feature 12905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267232 of field osm_id of feature 12906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267234 of field osm_id of feature 12907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267250 of field osm_id of feature 12908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267253 of field osm_id of feature 12909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123267257 of field osm_id of feature 12910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123295625 of field osm_id of feature 12911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123428992 of field osm_id of feature 12912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123430145 of field osm_id of feature 12913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123463719 of field osm_id of feature 12914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123463720 of field osm_id of feature 12915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123661963 of field osm_id of feature 12916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123661964 of field osm_id of feature 12917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123662582 of field osm_id of feature 12918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123662587 of field osm_id of feature 12919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123662591 of field osm_id of feature 12920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123669955 of field osm_id of feature 12921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123669958 of field osm_id of feature 12922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123853879 of field osm_id of feature 12923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123853880 of field osm_id of feature 12924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123856450 of field osm_id of feature 12925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123856452 of field osm_id of feature 12926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123861975 of field osm_id of feature 12927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890024 of field osm_id of feature 12928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890025 of field osm_id of feature 12929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890026 of field osm_id of feature 12930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890028 of field osm_id of feature 12931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890029 of field osm_id of feature 12932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890030 of field osm_id of feature 12933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890031 of field osm_id of feature 12934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890032 of field osm_id of feature 12935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890033 of field osm_id of feature 12936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890034 of field osm_id of feature 12937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890038 of field osm_id of feature 12938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890039 of field osm_id of feature 12939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890040 of field osm_id of feature 12940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890041 of field osm_id of feature 12941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890042 of field osm_id of feature 12942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890043 of field osm_id of feature 12943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123890044 of field osm_id of feature 12944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123893923 of field osm_id of feature 12945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540260268 of field osm_id of feature 12946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123893928 of field osm_id of feature 12947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123893929 of field osm_id of feature 12948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123893934 of field osm_id of feature 12949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123896496 of field osm_id of feature 12950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898842 of field osm_id of feature 12951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898843 of field osm_id of feature 12952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898844 of field osm_id of feature 12953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898845 of field osm_id of feature 12954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898846 of field osm_id of feature 12955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898847 of field osm_id of feature 12956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898848 of field osm_id of feature 12957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123898849 of field osm_id of feature 12958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123909004 of field osm_id of feature 12959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123909005 of field osm_id of feature 12960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123909006 of field osm_id of feature 12961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123915235 of field osm_id of feature 12962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123915236 of field osm_id of feature 12963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123915237 of field osm_id of feature 12964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123915238 of field osm_id of feature 12965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123946545 of field osm_id of feature 12966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123946547 of field osm_id of feature 12967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123964075 of field osm_id of feature 12968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123964076 of field osm_id of feature 12969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540265438 of field osm_id of feature 12970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 123964077 of field osm_id of feature 12971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776653 of field osm_id of feature 12972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776654 of field osm_id of feature 12973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776655 of field osm_id of feature 12974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776656 of field osm_id of feature 12975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776658 of field osm_id of feature 12976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776659 of field osm_id of feature 12977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776660 of field osm_id of feature 12978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776661 of field osm_id of feature 12979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776662 of field osm_id of feature 12980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776663 of field osm_id of feature 12981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776666 of field osm_id of feature 12982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776669 of field osm_id of feature 12983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776670 of field osm_id of feature 12984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124776676 of field osm_id of feature 12985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124960618 of field osm_id of feature 12986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962618 of field osm_id of feature 12987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962619 of field osm_id of feature 12988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962620 of field osm_id of feature 12989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962623 of field osm_id of feature 12990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962624 of field osm_id of feature 12991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962625 of field osm_id of feature 12992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962626 of field osm_id of feature 12993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962627 of field osm_id of feature 12994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962629 of field osm_id of feature 12995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962630 of field osm_id of feature 12996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962657 of field osm_id of feature 12997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962708 of field osm_id of feature 12998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 124962709 of field osm_id of feature 12999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125766626 of field osm_id of feature 13000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125766629 of field osm_id of feature 13001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125767619 of field osm_id of feature 13002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125767621 of field osm_id of feature 13003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125767622 of field osm_id of feature 13004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540272708 of field osm_id of feature 13005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125767623 of field osm_id of feature 13006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540272709 of field osm_id of feature 13007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125768852 of field osm_id of feature 13008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540272710 of field osm_id of feature 13009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125768853 of field osm_id of feature 13010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540272711 of field osm_id of feature 13011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125769289 of field osm_id of feature 13012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125769290 of field osm_id of feature 13013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 125774788 of field osm_id of feature 13014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126012605 of field osm_id of feature 13015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540274788 of field osm_id of feature 13016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016508 of field osm_id of feature 13017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540274789 of field osm_id of feature 13018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016651 of field osm_id of feature 13019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016879 of field osm_id of feature 13020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016880 of field osm_id of feature 13021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016881 of field osm_id of feature 13022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126016881 of field osm_id of feature 13023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126309714 of field osm_id of feature 13024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126946352 of field osm_id of feature 13025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126946365 of field osm_id of feature 13026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126946365 of field osm_id of feature 13027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 126946372 of field osm_id of feature 13028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127219021 of field osm_id of feature 13029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127219027 of field osm_id of feature 13030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127348520 of field osm_id of feature 13031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548071 of field osm_id of feature 13032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548072 of field osm_id of feature 13033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548073 of field osm_id of feature 13034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548074 of field osm_id of feature 13035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548075 of field osm_id of feature 13036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548076 of field osm_id of feature 13037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548077 of field osm_id of feature 13038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548078 of field osm_id of feature 13039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548079 of field osm_id of feature 13040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548084 of field osm_id of feature 13041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548085 of field osm_id of feature 13042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548089 of field osm_id of feature 13043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548090 of field osm_id of feature 13044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127548091 of field osm_id of feature 13045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648367 of field osm_id of feature 13046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648370 of field osm_id of feature 13047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648372 of field osm_id of feature 13048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648373 of field osm_id of feature 13049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648376 of field osm_id of feature 13050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648381 of field osm_id of feature 13051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 127648631 of field osm_id of feature 13052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 128019940 of field osm_id of feature 13053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 128019951 of field osm_id of feature 13054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 128019961 of field osm_id of feature 13055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 128602063 of field osm_id of feature 13056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540281873 of field osm_id of feature 13057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540281874 of field osm_id of feature 13058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540281875 of field osm_id of feature 13059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540281876 of field osm_id of feature 13060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282733 of field osm_id of feature 13061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282734 of field osm_id of feature 13062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282735 of field osm_id of feature 13063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354485 of field osm_id of feature 13064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282736 of field osm_id of feature 13065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282737 of field osm_id of feature 13066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282738 of field osm_id of feature 13067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354495 of field osm_id of feature 13068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282739 of field osm_id of feature 13069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354500 of field osm_id of feature 13070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282740 of field osm_id of feature 13071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540282741 of field osm_id of feature 13072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354504 of field osm_id of feature 13073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354506 of field osm_id of feature 13074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354508 of field osm_id of feature 13075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129354508 of field osm_id of feature 13076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129355525 of field osm_id of feature 13077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129355526 of field osm_id of feature 13078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129495743 of field osm_id of feature 13079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848770 of field osm_id of feature 13080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848771 of field osm_id of feature 13081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848772 of field osm_id of feature 13082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540284047 of field osm_id of feature 13083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848773 of field osm_id of feature 13084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540284048 of field osm_id of feature 13085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848774 of field osm_id of feature 13086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848775 of field osm_id of feature 13087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848776 of field osm_id of feature 13088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848778 of field osm_id of feature 13089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848779 of field osm_id of feature 13090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848780 of field osm_id of feature 13091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540284998 of field osm_id of feature 13092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848781 of field osm_id of feature 13093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540284999 of field osm_id of feature 13094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848782 of field osm_id of feature 13095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848783 of field osm_id of feature 13096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848784 of field osm_id of feature 13097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848785 of field osm_id of feature 13098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848786 of field osm_id of feature 13099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848788 of field osm_id of feature 13100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848789 of field osm_id of feature 13101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848791 of field osm_id of feature 13102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129848792 of field osm_id of feature 13103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850264 of field osm_id of feature 13104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850265 of field osm_id of feature 13105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850266 of field osm_id of feature 13106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850267 of field osm_id of feature 13107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850268 of field osm_id of feature 13108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850270 of field osm_id of feature 13109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850271 of field osm_id of feature 13110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850272 of field osm_id of feature 13111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850273 of field osm_id of feature 13112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850274 of field osm_id of feature 13113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129850275 of field osm_id of feature 13114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129930197 of field osm_id of feature 13115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129930199 of field osm_id of feature 13116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129930202 of field osm_id of feature 13117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129930203 of field osm_id of feature 13118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 129930205 of field osm_id of feature 13119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056290 of field osm_id of feature 13120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056291 of field osm_id of feature 13121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056294 of field osm_id of feature 13122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056297 of field osm_id of feature 13123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056298 of field osm_id of feature 13124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056299 of field osm_id of feature 13125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056300 of field osm_id of feature 13126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056302 of field osm_id of feature 13127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056303 of field osm_id of feature 13128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130056308 of field osm_id of feature 13129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540287247 of field osm_id of feature 13130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130057928 of field osm_id of feature 13131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540287248 of field osm_id of feature 13132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130057930 of field osm_id of feature 13133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130057942 of field osm_id of feature 13134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130057944 of field osm_id of feature 13135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130058289 of field osm_id of feature 13136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130058290 of field osm_id of feature 13137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130060722 of field osm_id of feature 13138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130060725 of field osm_id of feature 13139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130060726 of field osm_id of feature 13140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130060728 of field osm_id of feature 13141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130122999 of field osm_id of feature 13142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123001 of field osm_id of feature 13143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123005 of field osm_id of feature 13144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123009 of field osm_id of feature 13145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123013 of field osm_id of feature 13146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123015 of field osm_id of feature 13147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123018 of field osm_id of feature 13148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130123021 of field osm_id of feature 13149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130309341 of field osm_id of feature 13150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130309345 of field osm_id of feature 13151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130309348 of field osm_id of feature 13152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130309353 of field osm_id of feature 13153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130309359 of field osm_id of feature 13154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359709 of field osm_id of feature 13155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359712 of field osm_id of feature 13156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359716 of field osm_id of feature 13157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359731 of field osm_id of feature 13158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359735 of field osm_id of feature 13159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359737 of field osm_id of feature 13160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359738 of field osm_id of feature 13161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359740 of field osm_id of feature 13162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359749 of field osm_id of feature 13163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359750 of field osm_id of feature 13164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359751 of field osm_id of feature 13165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359753 of field osm_id of feature 13166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359760 of field osm_id of feature 13167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359762 of field osm_id of feature 13168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130359767 of field osm_id of feature 13169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130360159 of field osm_id of feature 13170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130360160 of field osm_id of feature 13171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130360167 of field osm_id of feature 13172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361369 of field osm_id of feature 13173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361370 of field osm_id of feature 13174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361371 of field osm_id of feature 13175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361372 of field osm_id of feature 13176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361373 of field osm_id of feature 13177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361374 of field osm_id of feature 13178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361378 of field osm_id of feature 13179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361379 of field osm_id of feature 13180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361381 of field osm_id of feature 13181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 130361382 of field osm_id of feature 13182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540288648 of field osm_id of feature 13183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131158741 of field osm_id of feature 13184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131158748 of field osm_id of feature 13185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131165179 of field osm_id of feature 13186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131384443 of field osm_id of feature 13187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540294102 of field osm_id of feature 13188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540294103 of field osm_id of feature 13189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540294104 of field osm_id of feature 13190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131479168 of field osm_id of feature 13191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131479169 of field osm_id of feature 13192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540294110 of field osm_id of feature 13193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540295948 of field osm_id of feature 13194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540295949 of field osm_id of feature 13195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540295950 of field osm_id of feature 13196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131638339 of field osm_id of feature 13197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131638340 of field osm_id of feature 13198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540295957 of field osm_id of feature 13199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891591 of field osm_id of feature 13200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891592 of field osm_id of feature 13201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891593 of field osm_id of feature 13202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891593 of field osm_id of feature 13203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891594 of field osm_id of feature 13204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891594 of field osm_id of feature 13205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891595 of field osm_id of feature 13206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891597 of field osm_id of feature 13207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891597 of field osm_id of feature 13208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 131891598 of field osm_id of feature 13209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132001471 of field osm_id of feature 13210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132001472 of field osm_id of feature 13211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540440042 of field osm_id of feature 13212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132696196 of field osm_id of feature 13213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132696197 of field osm_id of feature 13214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132696197 of field osm_id of feature 13215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540440044 of field osm_id of feature 13216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 132696198 of field osm_id of feature 13217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540440045 of field osm_id of feature 13218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133267815 of field osm_id of feature 13219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133980814 of field osm_id of feature 13220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983826 of field osm_id of feature 13221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983828 of field osm_id of feature 13222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983832 of field osm_id of feature 13223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983832 of field osm_id of feature 13224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983834 of field osm_id of feature 13225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983834 of field osm_id of feature 13226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133983839 of field osm_id of feature 13227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133988845 of field osm_id of feature 13228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 133988848 of field osm_id of feature 13229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134123097 of field osm_id of feature 13230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134123098 of field osm_id of feature 13231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134123099 of field osm_id of feature 13232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134208688 of field osm_id of feature 13233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446735 of field osm_id of feature 13234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134208689 of field osm_id of feature 13235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446736 of field osm_id of feature 13236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134208690 of field osm_id of feature 13237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134208690 of field osm_id of feature 13238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446737 of field osm_id of feature 13239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134208691 of field osm_id of feature 13240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446738 of field osm_id of feature 13241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134209222 of field osm_id of feature 13242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446739 of field osm_id of feature 13243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134209223 of field osm_id of feature 13244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134209223 of field osm_id of feature 13245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446741 of field osm_id of feature 13246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377330 of field osm_id of feature 13247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377331 of field osm_id of feature 13248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377332 of field osm_id of feature 13249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377333 of field osm_id of feature 13250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377334 of field osm_id of feature 13251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377335 of field osm_id of feature 13252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377336 of field osm_id of feature 13253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540446750 of field osm_id of feature 13254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377338 of field osm_id of feature 13255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134377339 of field osm_id of feature 13256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134767269 of field osm_id of feature 13257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134767269 of field osm_id of feature 13258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134767273 of field osm_id of feature 13259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134767273 of field osm_id of feature 13260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134768916 of field osm_id of feature 13261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134768917 of field osm_id of feature 13262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134770953 of field osm_id of feature 13263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134770955 of field osm_id of feature 13264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134770956 of field osm_id of feature 13265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991379 of field osm_id of feature 13266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991380 of field osm_id of feature 13267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991382 of field osm_id of feature 13268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991383 of field osm_id of feature 13269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991384 of field osm_id of feature 13270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134991385 of field osm_id of feature 13271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996381 of field osm_id of feature 13272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996384 of field osm_id of feature 13273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996386 of field osm_id of feature 13274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996386 of field osm_id of feature 13275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996389 of field osm_id of feature 13276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996391 of field osm_id of feature 13277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996391 of field osm_id of feature 13278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996393 of field osm_id of feature 13279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996394 of field osm_id of feature 13280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996395 of field osm_id of feature 13281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996396 of field osm_id of feature 13282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996397 of field osm_id of feature 13283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996398 of field osm_id of feature 13284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996399 of field osm_id of feature 13285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134996402 of field osm_id of feature 13286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134997146 of field osm_id of feature 13287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134999141 of field osm_id of feature 13288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450634 of field osm_id of feature 13289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134999142 of field osm_id of feature 13290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450637 of field osm_id of feature 13291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134999143 of field osm_id of feature 13292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450639 of field osm_id of feature 13293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134999144 of field osm_id of feature 13294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450640 of field osm_id of feature 13295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450641 of field osm_id of feature 13296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540450642 of field osm_id of feature 13297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 134999872 of field osm_id of feature 13298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135001222 of field osm_id of feature 13299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135001223 of field osm_id of feature 13300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135001560 of field osm_id of feature 13301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135011173 of field osm_id of feature 13302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135011174 of field osm_id of feature 13303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135011174 of field osm_id of feature 13304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135011176 of field osm_id of feature 13305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135011179 of field osm_id of feature 13306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135020962 of field osm_id of feature 13307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135021641 of field osm_id of feature 13308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135024936 of field osm_id of feature 13309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028057 of field osm_id of feature 13310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028058 of field osm_id of feature 13311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028060 of field osm_id of feature 13312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028063 of field osm_id of feature 13313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028064 of field osm_id of feature 13314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028067 of field osm_id of feature 13315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028068 of field osm_id of feature 13316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028070 of field osm_id of feature 13317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028070 of field osm_id of feature 13318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028072 of field osm_id of feature 13319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135028074 of field osm_id of feature 13320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030046 of field osm_id of feature 13321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030049 of field osm_id of feature 13322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030049 of field osm_id of feature 13323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030050 of field osm_id of feature 13324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030052 of field osm_id of feature 13325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030055 of field osm_id of feature 13326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030057 of field osm_id of feature 13327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030059 of field osm_id of feature 13328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030060 of field osm_id of feature 13329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030061 of field osm_id of feature 13330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135030062 of field osm_id of feature 13331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135031123 of field osm_id of feature 13332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135031124 of field osm_id of feature 13333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135032693 of field osm_id of feature 13334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135032694 of field osm_id of feature 13335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135032961 of field osm_id of feature 13336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135032962 of field osm_id of feature 13337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135036041 of field osm_id of feature 13338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135036042 of field osm_id of feature 13339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135036043 of field osm_id of feature 13340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135036044 of field osm_id of feature 13341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135250250 of field osm_id of feature 13342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135509084 of field osm_id of feature 13343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540471748 of field osm_id of feature 13344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540471750 of field osm_id of feature 13345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540471751 of field osm_id of feature 13346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135852121 of field osm_id of feature 13347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135852123 of field osm_id of feature 13348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135852126 of field osm_id of feature 13349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135852127 of field osm_id of feature 13350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472395 of field osm_id of feature 13351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135854410 of field osm_id of feature 13352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472396 of field osm_id of feature 13353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135854987 of field osm_id of feature 13354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135854987 of field osm_id of feature 13355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472397 of field osm_id of feature 13356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135854989 of field osm_id of feature 13357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135854989 of field osm_id of feature 13358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856647 of field osm_id of feature 13359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856648 of field osm_id of feature 13360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856649 of field osm_id of feature 13361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856650 of field osm_id of feature 13362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856650 of field osm_id of feature 13363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856651 of field osm_id of feature 13364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856652 of field osm_id of feature 13365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856653 of field osm_id of feature 13366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856654 of field osm_id of feature 13367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856655 of field osm_id of feature 13368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856655 of field osm_id of feature 13369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856656 of field osm_id of feature 13370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135856657 of field osm_id of feature 13371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857410 of field osm_id of feature 13372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857414 of field osm_id of feature 13373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857415 of field osm_id of feature 13374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857418 of field osm_id of feature 13375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472413 of field osm_id of feature 13376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857419 of field osm_id of feature 13377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472414 of field osm_id of feature 13378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135857421 of field osm_id of feature 13379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472415 of field osm_id of feature 13380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135864008 of field osm_id of feature 13381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540472416 of field osm_id of feature 13382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135864009 of field osm_id of feature 13383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956118 of field osm_id of feature 13384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956119 of field osm_id of feature 13385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956120 of field osm_id of feature 13386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956121 of field osm_id of feature 13387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956121 of field osm_id of feature 13388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956122 of field osm_id of feature 13389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956123 of field osm_id of feature 13390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956123 of field osm_id of feature 13391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956125 of field osm_id of feature 13392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956127 of field osm_id of feature 13393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956129 of field osm_id of feature 13394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956130 of field osm_id of feature 13395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956131 of field osm_id of feature 13396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956132 of field osm_id of feature 13397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956133 of field osm_id of feature 13398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956134 of field osm_id of feature 13399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956135 of field osm_id of feature 13400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956856 of field osm_id of feature 13401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956858 of field osm_id of feature 13402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956859 of field osm_id of feature 13403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956860 of field osm_id of feature 13404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956861 of field osm_id of feature 13405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956861 of field osm_id of feature 13406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956862 of field osm_id of feature 13407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956863 of field osm_id of feature 13408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956864 of field osm_id of feature 13409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956864 of field osm_id of feature 13410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956865 of field osm_id of feature 13411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956868 of field osm_id of feature 13412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135956869 of field osm_id of feature 13413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135957332 of field osm_id of feature 13414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135957333 of field osm_id of feature 13415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135957334 of field osm_id of feature 13416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977022 of field osm_id of feature 13417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977023 of field osm_id of feature 13418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977024 of field osm_id of feature 13419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977024 of field osm_id of feature 13420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977243 of field osm_id of feature 13421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135977244 of field osm_id of feature 13422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 135979751 of field osm_id of feature 13423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136100332 of field osm_id of feature 13424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136100334 of field osm_id of feature 13425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136100338 of field osm_id of feature 13426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136100339 of field osm_id of feature 13427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136466924 of field osm_id of feature 13428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136466925 of field osm_id of feature 13429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136495269 of field osm_id of feature 13430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666609 of field osm_id of feature 13431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666610 of field osm_id of feature 13432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666611 of field osm_id of feature 13433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666612 of field osm_id of feature 13434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666613 of field osm_id of feature 13435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540483615 of field osm_id of feature 13436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666614 of field osm_id of feature 13437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540483616 of field osm_id of feature 13438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666615 of field osm_id of feature 13439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666616 of field osm_id of feature 13440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666617 of field osm_id of feature 13441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666618 of field osm_id of feature 13442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666619 of field osm_id of feature 13443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666620 of field osm_id of feature 13444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666621 of field osm_id of feature 13445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666622 of field osm_id of feature 13446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487026 of field osm_id of feature 13447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487027 of field osm_id of feature 13448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487028 of field osm_id of feature 13449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666627 of field osm_id of feature 13450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487029 of field osm_id of feature 13451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666628 of field osm_id of feature 13452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487030 of field osm_id of feature 13453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487031 of field osm_id of feature 13454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487032 of field osm_id of feature 13455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666632 of field osm_id of feature 13456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487033 of field osm_id of feature 13457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666633 of field osm_id of feature 13458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487034 of field osm_id of feature 13459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136666634 of field osm_id of feature 13460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487035 of field osm_id of feature 13461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487036 of field osm_id of feature 13462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136705593 of field osm_id of feature 13463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136705593 of field osm_id of feature 13464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487037 of field osm_id of feature 13465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136705594 of field osm_id of feature 13466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136705594 of field osm_id of feature 13467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487038 of field osm_id of feature 13468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136705595 of field osm_id of feature 13469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487039 of field osm_id of feature 13470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136709504 of field osm_id of feature 13471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487543 of field osm_id of feature 13472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540487544 of field osm_id of feature 13473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540490000 of field osm_id of feature 13474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807057 of field osm_id of feature 13475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807057 of field osm_id of feature 13476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807058 of field osm_id of feature 13477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807059 of field osm_id of feature 13478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807060 of field osm_id of feature 13479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807060 of field osm_id of feature 13480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807061 of field osm_id of feature 13481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807062 of field osm_id of feature 13482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807062 of field osm_id of feature 13483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807063 of field osm_id of feature 13484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807064 of field osm_id of feature 13485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807064 of field osm_id of feature 13486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540491917 of field osm_id of feature 13487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807065 of field osm_id of feature 13488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807066 of field osm_id of feature 13489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136807066 of field osm_id of feature 13490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136808351 of field osm_id of feature 13491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809241 of field osm_id of feature 13492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809242 of field osm_id of feature 13493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540492951 of field osm_id of feature 13494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809435 of field osm_id of feature 13495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809790 of field osm_id of feature 13496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809791 of field osm_id of feature 13497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136809918 of field osm_id of feature 13498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136810597 of field osm_id of feature 13499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811676 of field osm_id of feature 13500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811676 of field osm_id of feature 13501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811677 of field osm_id of feature 13502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811677 of field osm_id of feature 13503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811678 of field osm_id of feature 13504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136811679 of field osm_id of feature 13505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 136813933 of field osm_id of feature 13506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137065297 of field osm_id of feature 13507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137065298 of field osm_id of feature 13508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137065463 of field osm_id of feature 13509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137065464 of field osm_id of feature 13510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137065465 of field osm_id of feature 13511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137465231 of field osm_id of feature 13512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137465234 of field osm_id of feature 13513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137465236 of field osm_id of feature 13514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137465238 of field osm_id of feature 13515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137465239 of field osm_id of feature 13516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879897 of field osm_id of feature 13517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879897 of field osm_id of feature 13518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879901 of field osm_id of feature 13519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879903 of field osm_id of feature 13520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879905 of field osm_id of feature 13521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879907 of field osm_id of feature 13522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879908 of field osm_id of feature 13523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879911 of field osm_id of feature 13524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879914 of field osm_id of feature 13525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879915 of field osm_id of feature 13526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879916 of field osm_id of feature 13527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137879917 of field osm_id of feature 13528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540511466 of field osm_id of feature 13529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540511467 of field osm_id of feature 13530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882569 of field osm_id of feature 13531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882570 of field osm_id of feature 13532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882573 of field osm_id of feature 13533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882575 of field osm_id of feature 13534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882576 of field osm_id of feature 13535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882577 of field osm_id of feature 13536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882578 of field osm_id of feature 13537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882579 of field osm_id of feature 13538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882580 of field osm_id of feature 13539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882581 of field osm_id of feature 13540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 137882954 of field osm_id of feature 13541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670171 of field osm_id of feature 13542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670174 of field osm_id of feature 13543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670176 of field osm_id of feature 13544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670178 of field osm_id of feature 13545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515308 of field osm_id of feature 13546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670181 of field osm_id of feature 13547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515309 of field osm_id of feature 13548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670184 of field osm_id of feature 13549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515310 of field osm_id of feature 13550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670186 of field osm_id of feature 13551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515311 of field osm_id of feature 13552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670189 of field osm_id of feature 13553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515312 of field osm_id of feature 13554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670194 of field osm_id of feature 13555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670195 of field osm_id of feature 13556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670196 of field osm_id of feature 13557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540515321 of field osm_id of feature 13558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670201 of field osm_id of feature 13559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670208 of field osm_id of feature 13560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670215 of field osm_id of feature 13561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670222 of field osm_id of feature 13562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139670224 of field osm_id of feature 13563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139678619 of field osm_id of feature 13564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139678625 of field osm_id of feature 13565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139678630 of field osm_id of feature 13566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139678631 of field osm_id of feature 13567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715162 of field osm_id of feature 13568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715162 of field osm_id of feature 13569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715164 of field osm_id of feature 13570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715164 of field osm_id of feature 13571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715165 of field osm_id of feature 13572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715167 of field osm_id of feature 13573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715167 of field osm_id of feature 13574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540522052 of field osm_id of feature 13575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715168 of field osm_id of feature 13576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715169 of field osm_id of feature 13577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715169 of field osm_id of feature 13578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715170 of field osm_id of feature 13579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715171 of field osm_id of feature 13580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715172 of field osm_id of feature 13581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715173 of field osm_id of feature 13582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715174 of field osm_id of feature 13583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139715353 of field osm_id of feature 13584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139716544 of field osm_id of feature 13585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139716546 of field osm_id of feature 13586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139718132 of field osm_id of feature 13587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139718132 of field osm_id of feature 13588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139821267 of field osm_id of feature 13589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139884475 of field osm_id of feature 13590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139884478 of field osm_id of feature 13591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 139884479 of field osm_id of feature 13592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140081225 of field osm_id of feature 13593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140083248 of field osm_id of feature 13594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140083251 of field osm_id of feature 13595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140086022 of field osm_id of feature 13596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140088088 of field osm_id of feature 13597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140088089 of field osm_id of feature 13598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140088090 of field osm_id of feature 13599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354350 of field osm_id of feature 13600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354622 of field osm_id of feature 13601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540527321 of field osm_id of feature 13602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354623 of field osm_id of feature 13603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540527322 of field osm_id of feature 13604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354624 of field osm_id of feature 13605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540527323 of field osm_id of feature 13606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354625 of field osm_id of feature 13607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540527324 of field osm_id of feature 13608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354626 of field osm_id of feature 13609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354627 of field osm_id of feature 13610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354628 of field osm_id of feature 13611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354640 of field osm_id of feature 13612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140354728 of field osm_id of feature 13613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140386263 of field osm_id of feature 13614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140386266 of field osm_id of feature 13615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140388569 of field osm_id of feature 13616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140392533 of field osm_id of feature 13617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140392547 of field osm_id of feature 13618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540531850 of field osm_id of feature 13619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540531851 of field osm_id of feature 13620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540531852 of field osm_id of feature 13621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540531853 of field osm_id of feature 13622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140398082 of field osm_id of feature 13623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140398093 of field osm_id of feature 13624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540532994 of field osm_id of feature 13625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540532995 of field osm_id of feature 13626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533747 of field osm_id of feature 13627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533748 of field osm_id of feature 13628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533751 of field osm_id of feature 13629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533752 of field osm_id of feature 13630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533753 of field osm_id of feature 13631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533754 of field osm_id of feature 13632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540533755 of field osm_id of feature 13633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562811 of field osm_id of feature 13634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562812 of field osm_id of feature 13635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562813 of field osm_id of feature 13636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562813 of field osm_id of feature 13637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562814 of field osm_id of feature 13638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562815 of field osm_id of feature 13639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562817 of field osm_id of feature 13640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562818 of field osm_id of feature 13641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562819 of field osm_id of feature 13642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562821 of field osm_id of feature 13643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562822 of field osm_id of feature 13644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562823 of field osm_id of feature 13645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562824 of field osm_id of feature 13646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562825 of field osm_id of feature 13647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140562826 of field osm_id of feature 13648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564538 of field osm_id of feature 13649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564538 of field osm_id of feature 13650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564541 of field osm_id of feature 13651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564545 of field osm_id of feature 13652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564547 of field osm_id of feature 13653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564550 of field osm_id of feature 13654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140564550 of field osm_id of feature 13655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140566293 of field osm_id of feature 13656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140566296 of field osm_id of feature 13657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140566301 of field osm_id of feature 13658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140573032 of field osm_id of feature 13659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140573036 of field osm_id of feature 13660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140573036 of field osm_id of feature 13661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743355 of field osm_id of feature 13662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743357 of field osm_id of feature 13663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540536541 of field osm_id of feature 13664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743358 of field osm_id of feature 13665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743360 of field osm_id of feature 13666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743361 of field osm_id of feature 13667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743362 of field osm_id of feature 13668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743364 of field osm_id of feature 13669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743368 of field osm_id of feature 13670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743369 of field osm_id of feature 13671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743370 of field osm_id of feature 13672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743371 of field osm_id of feature 13673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743388 of field osm_id of feature 13674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743394 of field osm_id of feature 13675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743396 of field osm_id of feature 13676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743410 of field osm_id of feature 13677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743416 of field osm_id of feature 13678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743425 of field osm_id of feature 13679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743438 of field osm_id of feature 13680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743443 of field osm_id of feature 13681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743456 of field osm_id of feature 13682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743458 of field osm_id of feature 13683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 140743461 of field osm_id of feature 13684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141374279 of field osm_id of feature 13685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141374283 of field osm_id of feature 13686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141381439 of field osm_id of feature 13687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141428143 of field osm_id of feature 13688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141462462 of field osm_id of feature 13689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463082 of field osm_id of feature 13690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463083 of field osm_id of feature 13691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463083 of field osm_id of feature 13692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463084 of field osm_id of feature 13693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463085 of field osm_id of feature 13694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141463087 of field osm_id of feature 13695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464483 of field osm_id of feature 13696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464486 of field osm_id of feature 13697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464487 of field osm_id of feature 13698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464489 of field osm_id of feature 13699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464489 of field osm_id of feature 13700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464490 of field osm_id of feature 13701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464491 of field osm_id of feature 13702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464491 of field osm_id of feature 13703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464492 of field osm_id of feature 13704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141464493 of field osm_id of feature 13705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141901384 of field osm_id of feature 13706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141901576 of field osm_id of feature 13707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141902221 of field osm_id of feature 13708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141902223 of field osm_id of feature 13709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141905627 of field osm_id of feature 13710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558344 of field osm_id of feature 13711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558345 of field osm_id of feature 13712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558346 of field osm_id of feature 13713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558347 of field osm_id of feature 13714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558348 of field osm_id of feature 13715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558349 of field osm_id of feature 13716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558350 of field osm_id of feature 13717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558351 of field osm_id of feature 13718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558354 of field osm_id of feature 13719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 141915279 of field osm_id of feature 13720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558357 of field osm_id of feature 13721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558359 of field osm_id of feature 13722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540558360 of field osm_id of feature 13723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142076748 of field osm_id of feature 13724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142076750 of field osm_id of feature 13725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142084664 of field osm_id of feature 13726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540758165 of field osm_id of feature 13727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540766711 of field osm_id of feature 13728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540766712 of field osm_id of feature 13729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540766715 of field osm_id of feature 13730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540766720 of field osm_id of feature 13731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142708992 of field osm_id of feature 13732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142708994 of field osm_id of feature 13733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142708995 of field osm_id of feature 13734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142708997 of field osm_id of feature 13735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142708999 of field osm_id of feature 13736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142709001 of field osm_id of feature 13737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142710622 of field osm_id of feature 13738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142710623 of field osm_id of feature 13739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142785632 of field osm_id of feature 13740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540785209 of field osm_id of feature 13741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540785210 of field osm_id of feature 13742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540785211 of field osm_id of feature 13743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 142785647 of field osm_id of feature 13744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540785212 of field osm_id of feature 13745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 143023818 of field osm_id of feature 13746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540797211 of field osm_id of feature 13747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540797217 of field osm_id of feature 13748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540806471 of field osm_id of feature 13749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540819531 of field osm_id of feature 13750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 144380189 of field osm_id of feature 13751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146652593 of field osm_id of feature 13752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146652594 of field osm_id of feature 13753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540846225 of field osm_id of feature 13754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146652596 of field osm_id of feature 13755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540846226 of field osm_id of feature 13756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146652600 of field osm_id of feature 13757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540846227 of field osm_id of feature 13758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540846228 of field osm_id of feature 13759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146658738 of field osm_id of feature 13760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146658739 of field osm_id of feature 13761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146658740 of field osm_id of feature 13762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540851290 of field osm_id of feature 13763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146658741 of field osm_id of feature 13764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146660824 of field osm_id of feature 13765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146660825 of field osm_id of feature 13766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146660826 of field osm_id of feature 13767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146663347 of field osm_id of feature 13768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146663348 of field osm_id of feature 13769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146663348 of field osm_id of feature 13770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146663349 of field osm_id of feature 13771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146663350 of field osm_id of feature 13772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146665362 of field osm_id of feature 13773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146665363 of field osm_id of feature 13774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146667511 of field osm_id of feature 13775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146667512 of field osm_id of feature 13776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146667513 of field osm_id of feature 13777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146668473 of field osm_id of feature 13778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146668474 of field osm_id of feature 13779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146668475 of field osm_id of feature 13780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854066 of field osm_id of feature 13781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854066 of field osm_id of feature 13782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854067 of field osm_id of feature 13783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146717583 of field osm_id of feature 13784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854810 of field osm_id of feature 13785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146717584 of field osm_id of feature 13786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854811 of field osm_id of feature 13787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146717585 of field osm_id of feature 13788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854955 of field osm_id of feature 13789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146717586 of field osm_id of feature 13790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540854958 of field osm_id of feature 13791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146720473 of field osm_id of feature 13792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146720475 of field osm_id of feature 13793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146721032 of field osm_id of feature 13794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146725755 of field osm_id of feature 13795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146725755 of field osm_id of feature 13796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146726563 of field osm_id of feature 13797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146726565 of field osm_id of feature 13798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146726566 of field osm_id of feature 13799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146726568 of field osm_id of feature 13800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857522 of field osm_id of feature 13801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857523 of field osm_id of feature 13802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857524 of field osm_id of feature 13803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146878753 of field osm_id of feature 13804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857525 of field osm_id of feature 13805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880644 of field osm_id of feature 13806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857526 of field osm_id of feature 13807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880645 of field osm_id of feature 13808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540857527 of field osm_id of feature 13809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880646 of field osm_id of feature 13810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880647 of field osm_id of feature 13811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880648 of field osm_id of feature 13812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146880650 of field osm_id of feature 13813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859049 of field osm_id of feature 13814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859051 of field osm_id of feature 13815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859052 of field osm_id of feature 13816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859053 of field osm_id of feature 13817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 146901610 of field osm_id of feature 13818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859054 of field osm_id of feature 13819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540859055 of field osm_id of feature 13820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861196 of field osm_id of feature 13821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861196 of field osm_id of feature 13822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861511 of field osm_id of feature 13823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861512 of field osm_id of feature 13824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861513 of field osm_id of feature 13825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540861514 of field osm_id of feature 13826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540864397 of field osm_id of feature 13827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540864398 of field osm_id of feature 13828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540864399 of field osm_id of feature 13829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540864400 of field osm_id of feature 13830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540864401 of field osm_id of feature 13831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540865012 of field osm_id of feature 13832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540865016 of field osm_id of feature 13833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147077671 of field osm_id of feature 13834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147077672 of field osm_id of feature 13835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147078218 of field osm_id of feature 13836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081799 of field osm_id of feature 13837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081799 of field osm_id of feature 13838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081800 of field osm_id of feature 13839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081800 of field osm_id of feature 13840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081802 of field osm_id of feature 13841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081805 of field osm_id of feature 13842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081806 of field osm_id of feature 13843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081809 of field osm_id of feature 13844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081810 of field osm_id of feature 13845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081811 of field osm_id of feature 13846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081812 of field osm_id of feature 13847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081812 of field osm_id of feature 13848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081813 of field osm_id of feature 13849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 147081814 of field osm_id of feature 13850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540866814 of field osm_id of feature 13851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540866815 of field osm_id of feature 13852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540868384 of field osm_id of feature 13853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540869326 of field osm_id of feature 13854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540869327 of field osm_id of feature 13855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540873976 of field osm_id of feature 13856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540880177 of field osm_id of feature 13857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540880180 of field osm_id of feature 13858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 148658340 of field osm_id of feature 13859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149654648 of field osm_id of feature 13860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149654657 of field osm_id of feature 13861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149654659 of field osm_id of feature 13862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149654659 of field osm_id of feature 13863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893636 of field osm_id of feature 13864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893637 of field osm_id of feature 13865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893638 of field osm_id of feature 13866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893639 of field osm_id of feature 13867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893645 of field osm_id of feature 13868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893646 of field osm_id of feature 13869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893647 of field osm_id of feature 13870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893648 of field osm_id of feature 13871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893649 of field osm_id of feature 13872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893650 of field osm_id of feature 13873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893651 of field osm_id of feature 13874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149899184 of field osm_id of feature 13875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893652 of field osm_id of feature 13876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 540893653 of field osm_id of feature 13877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149899220 of field osm_id of feature 13878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149899222 of field osm_id of feature 13879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944510 of field osm_id of feature 13880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944515 of field osm_id of feature 13881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944518 of field osm_id of feature 13882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541085341 of field osm_id of feature 13883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541085342 of field osm_id of feature 13884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541102866 of field osm_id of feature 13885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944700 of field osm_id of feature 13886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944724 of field osm_id of feature 13887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149944726 of field osm_id of feature 13888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965078 of field osm_id of feature 13889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965080 of field osm_id of feature 13890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965081 of field osm_id of feature 13891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965081 of field osm_id of feature 13892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965084 of field osm_id of feature 13893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965084 of field osm_id of feature 13894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149965087 of field osm_id of feature 13895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541114385 of field osm_id of feature 13896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541114387 of field osm_id of feature 13897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 149993827 of field osm_id of feature 13898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150003054 of field osm_id of feature 13899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150003057 of field osm_id of feature 13900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150003454 of field osm_id of feature 13901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150004135 of field osm_id of feature 13902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150004136 of field osm_id of feature 13903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150009548 of field osm_id of feature 13904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150009788 of field osm_id of feature 13905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150045533 of field osm_id of feature 13906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150051422 of field osm_id of feature 13907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541120862 of field osm_id of feature 13908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541120865 of field osm_id of feature 13909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150394622 of field osm_id of feature 13910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150394623 of field osm_id of feature 13911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150396839 of field osm_id of feature 13912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150819025 of field osm_id of feature 13913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150819029 of field osm_id of feature 13914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150829205 of field osm_id of feature 13915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150829208 of field osm_id of feature 13916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832652 of field osm_id of feature 13917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832656 of field osm_id of feature 13918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832658 of field osm_id of feature 13919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832662 of field osm_id of feature 13920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832664 of field osm_id of feature 13921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832665 of field osm_id of feature 13922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 150832668 of field osm_id of feature 13923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151173462 of field osm_id of feature 13924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151679595 of field osm_id of feature 13925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151703617 of field osm_id of feature 13926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151711028 of field osm_id of feature 13927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151711029 of field osm_id of feature 13928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 151711029 of field osm_id of feature 13929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152169940 of field osm_id of feature 13930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541130676 of field osm_id of feature 13931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541130678 of field osm_id of feature 13932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541130679 of field osm_id of feature 13933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152283279 of field osm_id of feature 13934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541132541 of field osm_id of feature 13935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152283282 of field osm_id of feature 13936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152289388 of field osm_id of feature 13937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152289389 of field osm_id of feature 13938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541137225 of field osm_id of feature 13939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541137226 of field osm_id of feature 13940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541137550 of field osm_id of feature 13941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541137551 of field osm_id of feature 13942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148071 of field osm_id of feature 13943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148072 of field osm_id of feature 13944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148073 of field osm_id of feature 13945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148074 of field osm_id of feature 13946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297190 of field osm_id of feature 13947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297191 of field osm_id of feature 13948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297192 of field osm_id of feature 13949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148081 of field osm_id of feature 13950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297193 of field osm_id of feature 13951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297194 of field osm_id of feature 13952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297682 of field osm_id of feature 13953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297683 of field osm_id of feature 13954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297684 of field osm_id of feature 13955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297685 of field osm_id of feature 13956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297686 of field osm_id of feature 13957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152297895 of field osm_id of feature 13958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152301200 of field osm_id of feature 13959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148090 of field osm_id of feature 13960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152301201 of field osm_id of feature 13961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148091 of field osm_id of feature 13962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152301690 of field osm_id of feature 13963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148092 of field osm_id of feature 13964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152301691 of field osm_id of feature 13965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148093 of field osm_id of feature 13966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152301692 of field osm_id of feature 13967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148094 of field osm_id of feature 13968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152335521 of field osm_id of feature 13969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148095 of field osm_id of feature 13970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152335522 of field osm_id of feature 13971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152437913 of field osm_id of feature 13972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148122 of field osm_id of feature 13973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148123 of field osm_id of feature 13974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148124 of field osm_id of feature 13975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148905 of field osm_id of feature 13976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541148906 of field osm_id of feature 13977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541151185 of field osm_id of feature 13978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541151186 of field osm_id of feature 13979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152473060 of field osm_id of feature 13980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152567151 of field osm_id of feature 13981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152586893 of field osm_id of feature 13982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152586894 of field osm_id of feature 13983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152586894 of field osm_id of feature 13984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541158242 of field osm_id of feature 13985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152604195 of field osm_id of feature 13986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541158243 of field osm_id of feature 13987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152604198 of field osm_id of feature 13988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152628979 of field osm_id of feature 13989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541158245 of field osm_id of feature 13990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541158246 of field osm_id of feature 13991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541158247 of field osm_id of feature 13992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152633452 of field osm_id of feature 13993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152633453 of field osm_id of feature 13994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152638436 of field osm_id of feature 13995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152638464 of field osm_id of feature 13996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152762796 of field osm_id of feature 13997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152762798 of field osm_id of feature 13998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152771079 of field osm_id of feature 13999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541174862 of field osm_id of feature 14000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541174862 of field osm_id of feature 14001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152783801 of field osm_id of feature 14002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 152956951 of field osm_id of feature 14003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 153326071 of field osm_id of feature 14004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 153326075 of field osm_id of feature 14005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 153339811 of field osm_id of feature 14006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 153339813 of field osm_id of feature 14007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 153339814 of field osm_id of feature 14008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154086712 of field osm_id of feature 14009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154086713 of field osm_id of feature 14010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154086714 of field osm_id of feature 14011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154086715 of field osm_id of feature 14012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541185937 of field osm_id of feature 14013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541185938 of field osm_id of feature 14014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541185941 of field osm_id of feature 14015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154268053 of field osm_id of feature 14016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154268200 of field osm_id of feature 14017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154324765 of field osm_id of feature 14018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154325195 of field osm_id of feature 14019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154417051 of field osm_id of feature 14020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154417053 of field osm_id of feature 14021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154417243 of field osm_id of feature 14022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154430008 of field osm_id of feature 14023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154430011 of field osm_id of feature 14024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154437103 of field osm_id of feature 14025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154442649 of field osm_id of feature 14026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493307 of field osm_id of feature 14027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493307 of field osm_id of feature 14028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493307 of field osm_id of feature 14029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493310 of field osm_id of feature 14030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493310 of field osm_id of feature 14031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493310 of field osm_id of feature 14032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154493314 of field osm_id of feature 14033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201043 of field osm_id of feature 14034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201044 of field osm_id of feature 14035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201045 of field osm_id of feature 14036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201046 of field osm_id of feature 14037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201047 of field osm_id of feature 14038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 154843488 of field osm_id of feature 14039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155435645 of field osm_id of feature 14040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155906847 of field osm_id of feature 14041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541201056 of field osm_id of feature 14042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155907157 of field osm_id of feature 14043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155907158 of field osm_id of feature 14044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155907159 of field osm_id of feature 14045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155907160 of field osm_id of feature 14046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155907163 of field osm_id of feature 14047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155923338 of field osm_id of feature 14048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155923338 of field osm_id of feature 14049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155923339 of field osm_id of feature 14050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155923340 of field osm_id of feature 14051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155925873 of field osm_id of feature 14052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155925874 of field osm_id of feature 14053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155925875 of field osm_id of feature 14054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155925876 of field osm_id of feature 14055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926150 of field osm_id of feature 14056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926151 of field osm_id of feature 14057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926152 of field osm_id of feature 14058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926153 of field osm_id of feature 14059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926154 of field osm_id of feature 14060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155926483 of field osm_id of feature 14061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155931230 of field osm_id of feature 14062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155932054 of field osm_id of feature 14063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155932059 of field osm_id of feature 14064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155940121 of field osm_id of feature 14065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155940122 of field osm_id of feature 14066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541205300 of field osm_id of feature 14067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155941650 of field osm_id of feature 14068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155949885 of field osm_id of feature 14069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155949886 of field osm_id of feature 14070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155949887 of field osm_id of feature 14071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155949888 of field osm_id of feature 14072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155950786 of field osm_id of feature 14073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155952810 of field osm_id of feature 14074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155954288 of field osm_id of feature 14075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 155987123 of field osm_id of feature 14076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541218811 of field osm_id of feature 14077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225963 of field osm_id of feature 14078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225964 of field osm_id of feature 14079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225965 of field osm_id of feature 14080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225966 of field osm_id of feature 14081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225967 of field osm_id of feature 14082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225968 of field osm_id of feature 14083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225969 of field osm_id of feature 14084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156002612 of field osm_id of feature 14085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156002613 of field osm_id of feature 14086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156152572 of field osm_id of feature 14087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156152574 of field osm_id of feature 14088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156456422 of field osm_id of feature 14089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156456425 of field osm_id of feature 14090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156457347 of field osm_id of feature 14091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156566844 of field osm_id of feature 14092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156566849 of field osm_id of feature 14093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156566851 of field osm_id of feature 14094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156568356 of field osm_id of feature 14095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156568357 of field osm_id of feature 14096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 156568358 of field osm_id of feature 14097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225989 of field osm_id of feature 14098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225990 of field osm_id of feature 14099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157560745 of field osm_id of feature 14100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541225991 of field osm_id of feature 14101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157561015 of field osm_id of feature 14102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157561016 of field osm_id of feature 14103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157561964 of field osm_id of feature 14104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157561966 of field osm_id of feature 14105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157561969 of field osm_id of feature 14106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157563729 of field osm_id of feature 14107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157563731 of field osm_id of feature 14108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157565279 of field osm_id of feature 14109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157566901 of field osm_id of feature 14110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157566901 of field osm_id of feature 14111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157607175 of field osm_id of feature 14112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157675863 of field osm_id of feature 14113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157706423 of field osm_id of feature 14114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157767716 of field osm_id of feature 14115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157868639 of field osm_id of feature 14116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157963733 of field osm_id of feature 14117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157963886 of field osm_id of feature 14118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157963887 of field osm_id of feature 14119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157963888 of field osm_id of feature 14120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157963889 of field osm_id of feature 14121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157965124 of field osm_id of feature 14122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157965131 of field osm_id of feature 14123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157965268 of field osm_id of feature 14124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157966055 of field osm_id of feature 14125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541386515 of field osm_id of feature 14126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157982366 of field osm_id of feature 14127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157984202 of field osm_id of feature 14128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157984202 of field osm_id of feature 14129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157984807 of field osm_id of feature 14130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157984807 of field osm_id of feature 14131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157988316 of field osm_id of feature 14132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 157993654 of field osm_id of feature 14133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158188867 of field osm_id of feature 14134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158188871 of field osm_id of feature 14135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158189034 of field osm_id of feature 14136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158189185 of field osm_id of feature 14137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158191860 of field osm_id of feature 14138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158191981 of field osm_id of feature 14139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158192080 of field osm_id of feature 14140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158192080 of field osm_id of feature 14141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158214030 of field osm_id of feature 14142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158214628 of field osm_id of feature 14143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158214634 of field osm_id of feature 14144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158214637 of field osm_id of feature 14145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158214643 of field osm_id of feature 14146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158215481 of field osm_id of feature 14147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216594 of field osm_id of feature 14148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216595 of field osm_id of feature 14149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216596 of field osm_id of feature 14150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216597 of field osm_id of feature 14151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216598 of field osm_id of feature 14152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158216673 of field osm_id of feature 14153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158232311 of field osm_id of feature 14154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158232312 of field osm_id of feature 14155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158232313 of field osm_id of feature 14156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158232319 of field osm_id of feature 14157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158234015 of field osm_id of feature 14158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158317882 of field osm_id of feature 14159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158464060 of field osm_id of feature 14160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158468337 of field osm_id of feature 14161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158850023 of field osm_id of feature 14162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158883000 of field osm_id of feature 14163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158892207 of field osm_id of feature 14164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158892208 of field osm_id of feature 14165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 158932651 of field osm_id of feature 14166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431669 of field osm_id of feature 14167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431670 of field osm_id of feature 14168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431672 of field osm_id of feature 14169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431674 of field osm_id of feature 14170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431677 of field osm_id of feature 14171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431679 of field osm_id of feature 14172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541431687 of field osm_id of feature 14173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159028808 of field osm_id of feature 14174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159051160 of field osm_id of feature 14175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159051161 of field osm_id of feature 14176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159051162 of field osm_id of feature 14177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541433708 of field osm_id of feature 14178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056538 of field osm_id of feature 14179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056541 of field osm_id of feature 14180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056542 of field osm_id of feature 14181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056544 of field osm_id of feature 14182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056545 of field osm_id of feature 14183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056546 of field osm_id of feature 14184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159056547 of field osm_id of feature 14185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159089481 of field osm_id of feature 14186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159090940 of field osm_id of feature 14187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159090941 of field osm_id of feature 14188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159090942 of field osm_id of feature 14189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159090943 of field osm_id of feature 14190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159115036 of field osm_id of feature 14191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159115037 of field osm_id of feature 14192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159128314 of field osm_id of feature 14193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232395 of field osm_id of feature 14194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232395 of field osm_id of feature 14195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232402 of field osm_id of feature 14196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232402 of field osm_id of feature 14197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232406 of field osm_id of feature 14198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159232406 of field osm_id of feature 14199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159237259 of field osm_id of feature 14200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159558700 of field osm_id of feature 14201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159577262 of field osm_id of feature 14202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588443 of field osm_id of feature 14203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588444 of field osm_id of feature 14204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588446 of field osm_id of feature 14205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588448 of field osm_id of feature 14206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588449 of field osm_id of feature 14207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588450 of field osm_id of feature 14208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588451 of field osm_id of feature 14209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588452 of field osm_id of feature 14210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588453 of field osm_id of feature 14211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588456 of field osm_id of feature 14212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588458 of field osm_id of feature 14213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588459 of field osm_id of feature 14214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588461 of field osm_id of feature 14215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159588463 of field osm_id of feature 14216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629164 of field osm_id of feature 14217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629510 of field osm_id of feature 14218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629511 of field osm_id of feature 14219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629513 of field osm_id of feature 14220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629974 of field osm_id of feature 14221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629975 of field osm_id of feature 14222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629976 of field osm_id of feature 14223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629977 of field osm_id of feature 14224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159629978 of field osm_id of feature 14225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630078 of field osm_id of feature 14226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630079 of field osm_id of feature 14227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630080 of field osm_id of feature 14228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630081 of field osm_id of feature 14229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630224 of field osm_id of feature 14230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630225 of field osm_id of feature 14231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630226 of field osm_id of feature 14232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630227 of field osm_id of feature 14233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630381 of field osm_id of feature 14234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630382 of field osm_id of feature 14235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159630383 of field osm_id of feature 14236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159634854 of field osm_id of feature 14237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641013 of field osm_id of feature 14238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641014 of field osm_id of feature 14239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641015 of field osm_id of feature 14240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641017 of field osm_id of feature 14241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641017 of field osm_id of feature 14242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641018 of field osm_id of feature 14243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159641021 of field osm_id of feature 14244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654438 of field osm_id of feature 14245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654439 of field osm_id of feature 14246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654439 of field osm_id of feature 14247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654440 of field osm_id of feature 14248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654440 of field osm_id of feature 14249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159654441 of field osm_id of feature 14250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541922970 of field osm_id of feature 14251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674664 of field osm_id of feature 14252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674666 of field osm_id of feature 14253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674805 of field osm_id of feature 14254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674807 of field osm_id of feature 14255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674808 of field osm_id of feature 14256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674809 of field osm_id of feature 14257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674810 of field osm_id of feature 14258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541928632 of field osm_id of feature 14259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674816 of field osm_id of feature 14260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674817 of field osm_id of feature 14261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541928885 of field osm_id of feature 14262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674819 of field osm_id of feature 14263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541928887 of field osm_id of feature 14264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159674821 of field osm_id of feature 14265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159676515 of field osm_id of feature 14266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159676516 of field osm_id of feature 14267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677026 of field osm_id of feature 14268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677027 of field osm_id of feature 14269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677028 of field osm_id of feature 14270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677768 of field osm_id of feature 14271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677770 of field osm_id of feature 14272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677771 of field osm_id of feature 14273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677772 of field osm_id of feature 14274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159677773 of field osm_id of feature 14275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680985 of field osm_id of feature 14276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680986 of field osm_id of feature 14277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680987 of field osm_id of feature 14278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680988 of field osm_id of feature 14279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680989 of field osm_id of feature 14280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680990 of field osm_id of feature 14281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680991 of field osm_id of feature 14282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159680992 of field osm_id of feature 14283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684310 of field osm_id of feature 14284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684311 of field osm_id of feature 14285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541933847 of field osm_id of feature 14286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684313 of field osm_id of feature 14287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541933848 of field osm_id of feature 14288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684314 of field osm_id of feature 14289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541933849 of field osm_id of feature 14290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684315 of field osm_id of feature 14291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684830 of field osm_id of feature 14292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159684992 of field osm_id of feature 14293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159686261 of field osm_id of feature 14294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689090 of field osm_id of feature 14295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689091 of field osm_id of feature 14296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689094 of field osm_id of feature 14297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689646 of field osm_id of feature 14298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541934199 of field osm_id of feature 14299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689648 of field osm_id of feature 14300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541934200 of field osm_id of feature 14301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689650 of field osm_id of feature 14302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689654 of field osm_id of feature 14303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689657 of field osm_id of feature 14304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159689660 of field osm_id of feature 14305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159690216 of field osm_id of feature 14306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159693943 of field osm_id of feature 14307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159693944 of field osm_id of feature 14308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159693945 of field osm_id of feature 14309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159693947 of field osm_id of feature 14310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159696875 of field osm_id of feature 14311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159696876 of field osm_id of feature 14312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159698181 of field osm_id of feature 14313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159698182 of field osm_id of feature 14314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159698184 of field osm_id of feature 14315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159698186 of field osm_id of feature 14316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541940527 of field osm_id of feature 14317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541940534 of field osm_id of feature 14318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541940535 of field osm_id of feature 14319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541940536 of field osm_id of feature 14320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159938516 of field osm_id of feature 14321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159938518 of field osm_id of feature 14322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159938919 of field osm_id of feature 14323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159942047 of field osm_id of feature 14324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159946609 of field osm_id of feature 14325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159946610 of field osm_id of feature 14326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159946611 of field osm_id of feature 14327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159946612 of field osm_id of feature 14328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 159946613 of field osm_id of feature 14329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160010039 of field osm_id of feature 14330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541941409 of field osm_id of feature 14331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541943198 of field osm_id of feature 14332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541943199 of field osm_id of feature 14333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541943200 of field osm_id of feature 14334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160182336 of field osm_id of feature 14335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160185255 of field osm_id of feature 14336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160185341 of field osm_id of feature 14337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541947785 of field osm_id of feature 14338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541947786 of field osm_id of feature 14339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541947788 of field osm_id of feature 14340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443487 of field osm_id of feature 14341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443488 of field osm_id of feature 14342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443489 of field osm_id of feature 14343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443490 of field osm_id of feature 14344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443491 of field osm_id of feature 14345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443492 of field osm_id of feature 14346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160443780 of field osm_id of feature 14347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160530744 of field osm_id of feature 14348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160530747 of field osm_id of feature 14349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160531533 of field osm_id of feature 14350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160531535 of field osm_id of feature 14351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160585367 of field osm_id of feature 14352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160588637 of field osm_id of feature 14353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160588639 of field osm_id of feature 14354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160588641 of field osm_id of feature 14355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160588642 of field osm_id of feature 14356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593284 of field osm_id of feature 14357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593291 of field osm_id of feature 14358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593294 of field osm_id of feature 14359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593299 of field osm_id of feature 14360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593304 of field osm_id of feature 14361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160593307 of field osm_id of feature 14362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160595163 of field osm_id of feature 14363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955994 of field osm_id of feature 14364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160595164 of field osm_id of feature 14365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955995 of field osm_id of feature 14366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955996 of field osm_id of feature 14367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955997 of field osm_id of feature 14368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955998 of field osm_id of feature 14369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541955999 of field osm_id of feature 14370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541956000 of field osm_id of feature 14371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160605003 of field osm_id of feature 14372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541956001 of field osm_id of feature 14373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541956002 of field osm_id of feature 14374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160605007 of field osm_id of feature 14375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541956003 of field osm_id of feature 14376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160605009 of field osm_id of feature 14377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541956076 of field osm_id of feature 14378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160609774 of field osm_id of feature 14379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160609776 of field osm_id of feature 14380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613143 of field osm_id of feature 14381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613151 of field osm_id of feature 14382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613151 of field osm_id of feature 14383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541958654 of field osm_id of feature 14384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613154 of field osm_id of feature 14385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613154 of field osm_id of feature 14386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160613160 of field osm_id of feature 14387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160614578 of field osm_id of feature 14388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160615621 of field osm_id of feature 14389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160615623 of field osm_id of feature 14390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160615623 of field osm_id of feature 14391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541963089 of field osm_id of feature 14392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160627227 of field osm_id of feature 14393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160670631 of field osm_id of feature 14394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160670632 of field osm_id of feature 14395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160826520 of field osm_id of feature 14396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160826520 of field osm_id of feature 14397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936749 of field osm_id of feature 14398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936750 of field osm_id of feature 14399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936751 of field osm_id of feature 14400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936755 of field osm_id of feature 14401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936756 of field osm_id of feature 14402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160936758 of field osm_id of feature 14403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955025 of field osm_id of feature 14404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955026 of field osm_id of feature 14405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955970 of field osm_id of feature 14406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955971 of field osm_id of feature 14407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955976 of field osm_id of feature 14408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955979 of field osm_id of feature 14409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 160955981 of field osm_id of feature 14410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161022128 of field osm_id of feature 14411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161106356 of field osm_id of feature 14412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161106358 of field osm_id of feature 14413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541965584 of field osm_id of feature 14414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541965585 of field osm_id of feature 14415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161111557 of field osm_id of feature 14416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161135732 of field osm_id of feature 14417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161135984 of field osm_id of feature 14418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541967030 of field osm_id of feature 14419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161135986 of field osm_id of feature 14420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161135989 of field osm_id of feature 14421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161136208 of field osm_id of feature 14422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161136211 of field osm_id of feature 14423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541968311 of field osm_id of feature 14424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161136293 of field osm_id of feature 14425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161151418 of field osm_id of feature 14426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161413988 of field osm_id of feature 14427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161416393 of field osm_id of feature 14428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161416396 of field osm_id of feature 14429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161416397 of field osm_id of feature 14430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161416406 of field osm_id of feature 14431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161416652 of field osm_id of feature 14432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161418743 of field osm_id of feature 14433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161418744 of field osm_id of feature 14434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161418746 of field osm_id of feature 14435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161418861 of field osm_id of feature 14436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161420327 of field osm_id of feature 14437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161420334 of field osm_id of feature 14438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161436156 of field osm_id of feature 14439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161437373 of field osm_id of feature 14440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161437374 of field osm_id of feature 14441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161459960 of field osm_id of feature 14442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161459962 of field osm_id of feature 14443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583983 of field osm_id of feature 14444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583984 of field osm_id of feature 14445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583985 of field osm_id of feature 14446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583986 of field osm_id of feature 14447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583987 of field osm_id of feature 14448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583988 of field osm_id of feature 14449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583989 of field osm_id of feature 14450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583990 of field osm_id of feature 14451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583991 of field osm_id of feature 14452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161583992 of field osm_id of feature 14453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161586063 of field osm_id of feature 14454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161591566 of field osm_id of feature 14455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161591567 of field osm_id of feature 14456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161591567 of field osm_id of feature 14457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161640807 of field osm_id of feature 14458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161640808 of field osm_id of feature 14459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647489 of field osm_id of feature 14460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647490 of field osm_id of feature 14461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647491 of field osm_id of feature 14462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647492 of field osm_id of feature 14463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541979662 of field osm_id of feature 14464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647493 of field osm_id of feature 14465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541979663 of field osm_id of feature 14466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647494 of field osm_id of feature 14467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161647494 of field osm_id of feature 14468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541979664 of field osm_id of feature 14469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740022 of field osm_id of feature 14470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740025 of field osm_id of feature 14471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740027 of field osm_id of feature 14472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740030 of field osm_id of feature 14473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740032 of field osm_id of feature 14474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161740034 of field osm_id of feature 14475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743338 of field osm_id of feature 14476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743339 of field osm_id of feature 14477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743340 of field osm_id of feature 14478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743341 of field osm_id of feature 14479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743342 of field osm_id of feature 14480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743344 of field osm_id of feature 14481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743345 of field osm_id of feature 14482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743346 of field osm_id of feature 14483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161743347 of field osm_id of feature 14484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886031 of field osm_id of feature 14485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886032 of field osm_id of feature 14486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886034 of field osm_id of feature 14487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886036 of field osm_id of feature 14488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886040 of field osm_id of feature 14489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886043 of field osm_id of feature 14490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541984891 of field osm_id of feature 14491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886045 of field osm_id of feature 14492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541984892 of field osm_id of feature 14493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886048 of field osm_id of feature 14494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886051 of field osm_id of feature 14495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886053 of field osm_id of feature 14496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 541986171 of field osm_id of feature 14497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886800 of field osm_id of feature 14498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886808 of field osm_id of feature 14499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161886810 of field osm_id of feature 14500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888194 of field osm_id of feature 14501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888195 of field osm_id of feature 14502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888196 of field osm_id of feature 14503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888197 of field osm_id of feature 14504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888198 of field osm_id of feature 14505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888199 of field osm_id of feature 14506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888200 of field osm_id of feature 14507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888201 of field osm_id of feature 14508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888202 of field osm_id of feature 14509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888203 of field osm_id of feature 14510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888204 of field osm_id of feature 14511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888205 of field osm_id of feature 14512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888206 of field osm_id of feature 14513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161888208 of field osm_id of feature 14514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161889658 of field osm_id of feature 14515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161889659 of field osm_id of feature 14516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972813 of field osm_id of feature 14517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972814 of field osm_id of feature 14518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972815 of field osm_id of feature 14519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972816 of field osm_id of feature 14520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972817 of field osm_id of feature 14521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972818 of field osm_id of feature 14522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972819 of field osm_id of feature 14523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972820 of field osm_id of feature 14524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 161972821 of field osm_id of feature 14525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162081696 of field osm_id of feature 14526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162083276 of field osm_id of feature 14527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162083811 of field osm_id of feature 14528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162084303 of field osm_id of feature 14529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162088395 of field osm_id of feature 14530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542096116 of field osm_id of feature 14531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162088396 of field osm_id of feature 14532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542096119 of field osm_id of feature 14533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542096122 of field osm_id of feature 14534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542096124 of field osm_id of feature 14535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542096127 of field osm_id of feature 14536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157841 of field osm_id of feature 14537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157842 of field osm_id of feature 14538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157956 of field osm_id of feature 14539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157957 of field osm_id of feature 14540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157958 of field osm_id of feature 14541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157959 of field osm_id of feature 14542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157960 of field osm_id of feature 14543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157963 of field osm_id of feature 14544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162157965 of field osm_id of feature 14545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162158298 of field osm_id of feature 14546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162172606 of field osm_id of feature 14547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162172607 of field osm_id of feature 14548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162191180 of field osm_id of feature 14549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162191181 of field osm_id of feature 14550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162191182 of field osm_id of feature 14551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162191183 of field osm_id of feature 14552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162191184 of field osm_id of feature 14553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197593 of field osm_id of feature 14554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197594 of field osm_id of feature 14555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197595 of field osm_id of feature 14556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197596 of field osm_id of feature 14557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197597 of field osm_id of feature 14558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197598 of field osm_id of feature 14559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162197599 of field osm_id of feature 14560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162218920 of field osm_id of feature 14561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162268267 of field osm_id of feature 14562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162268369 of field osm_id of feature 14563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542124366 of field osm_id of feature 14564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162268372 of field osm_id of feature 14565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542124367 of field osm_id of feature 14566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542124368 of field osm_id of feature 14567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270239 of field osm_id of feature 14568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270242 of field osm_id of feature 14569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270243 of field osm_id of feature 14570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270244 of field osm_id of feature 14571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270245 of field osm_id of feature 14572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162270246 of field osm_id of feature 14573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162272897 of field osm_id of feature 14574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162272901 of field osm_id of feature 14575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162274929 of field osm_id of feature 14576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162274930 of field osm_id of feature 14577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162274930 of field osm_id of feature 14578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275631 of field osm_id of feature 14579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275632 of field osm_id of feature 14580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275633 of field osm_id of feature 14581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275634 of field osm_id of feature 14582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275635 of field osm_id of feature 14583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275636 of field osm_id of feature 14584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275637 of field osm_id of feature 14585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162275638 of field osm_id of feature 14586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162282252 of field osm_id of feature 14587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162284516 of field osm_id of feature 14588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162284517 of field osm_id of feature 14589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542135611 of field osm_id of feature 14590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542142413 of field osm_id of feature 14591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514275 of field osm_id of feature 14592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542142414 of field osm_id of feature 14593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514276 of field osm_id of feature 14594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514281 of field osm_id of feature 14595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514282 of field osm_id of feature 14596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542143025 of field osm_id of feature 14597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514283 of field osm_id of feature 14598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542143028 of field osm_id of feature 14599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514284 of field osm_id of feature 14600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542143031 of field osm_id of feature 14601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542143034 of field osm_id of feature 14602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542143035 of field osm_id of feature 14603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162514328 of field osm_id of feature 14604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542144663 of field osm_id of feature 14605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542144664 of field osm_id of feature 14606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542144666 of field osm_id of feature 14607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162579191 of field osm_id of feature 14608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162588827 of field osm_id of feature 14609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162588828 of field osm_id of feature 14610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162588833 of field osm_id of feature 14611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162588834 of field osm_id of feature 14612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589256 of field osm_id of feature 14613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589257 of field osm_id of feature 14614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589259 of field osm_id of feature 14615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589260 of field osm_id of feature 14616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589303 of field osm_id of feature 14617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589304 of field osm_id of feature 14618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589305 of field osm_id of feature 14619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162589329 of field osm_id of feature 14620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162651214 of field osm_id of feature 14621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542158614 of field osm_id of feature 14622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542158615 of field osm_id of feature 14623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542158616 of field osm_id of feature 14624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162651217 of field osm_id of feature 14625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542158617 of field osm_id of feature 14626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542158618 of field osm_id of feature 14627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542161961 of field osm_id of feature 14628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542161962 of field osm_id of feature 14629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542163813 of field osm_id of feature 14630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162727871 of field osm_id of feature 14631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542165962 of field osm_id of feature 14632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162780471 of field osm_id of feature 14633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162780472 of field osm_id of feature 14634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162780474 of field osm_id of feature 14635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162780476 of field osm_id of feature 14636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162780477 of field osm_id of feature 14637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542167895 of field osm_id of feature 14638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542167897 of field osm_id of feature 14639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783047 of field osm_id of feature 14640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783048 of field osm_id of feature 14641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783049 of field osm_id of feature 14642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783054 of field osm_id of feature 14643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783055 of field osm_id of feature 14644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 162783056 of field osm_id of feature 14645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163028709 of field osm_id of feature 14646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030144 of field osm_id of feature 14647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030145 of field osm_id of feature 14648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030147 of field osm_id of feature 14649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030149 of field osm_id of feature 14650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030150 of field osm_id of feature 14651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030156 of field osm_id of feature 14652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030157 of field osm_id of feature 14653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030162 of field osm_id of feature 14654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163030165 of field osm_id of feature 14655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163122971 of field osm_id of feature 14656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163137280 of field osm_id of feature 14657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163139027 of field osm_id of feature 14658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163139028 of field osm_id of feature 14659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163139031 of field osm_id of feature 14660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163139981 of field osm_id of feature 14661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141432 of field osm_id of feature 14662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141435 of field osm_id of feature 14663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141435 of field osm_id of feature 14664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141438 of field osm_id of feature 14665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141440 of field osm_id of feature 14666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163141440 of field osm_id of feature 14667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163233806 of field osm_id of feature 14668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163234804 of field osm_id of feature 14669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163234806 of field osm_id of feature 14670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163560945 of field osm_id of feature 14671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163766151 of field osm_id of feature 14672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163766418 of field osm_id of feature 14673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163766422 of field osm_id of feature 14674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163766573 of field osm_id of feature 14675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163767438 of field osm_id of feature 14676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 163767439 of field osm_id of feature 14677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542278896 of field osm_id of feature 14678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542283343 of field osm_id of feature 14679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164454182 of field osm_id of feature 14680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164454183 of field osm_id of feature 14681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164454232 of field osm_id of feature 14682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542293456 of field osm_id of feature 14683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542293457 of field osm_id of feature 14684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164454829 of field osm_id of feature 14685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164455342 of field osm_id of feature 14686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164455343 of field osm_id of feature 14687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542298580 of field osm_id of feature 14688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542298582 of field osm_id of feature 14689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164778677 of field osm_id of feature 14690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 164778677 of field osm_id of feature 14691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306184 of field osm_id of feature 14692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306185 of field osm_id of feature 14693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306186 of field osm_id of feature 14694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306187 of field osm_id of feature 14695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306188 of field osm_id of feature 14696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306189 of field osm_id of feature 14697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306190 of field osm_id of feature 14698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306191 of field osm_id of feature 14699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306192 of field osm_id of feature 14700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542306193 of field osm_id of feature 14701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542310666 of field osm_id of feature 14702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542310667 of field osm_id of feature 14703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542315571 of field osm_id of feature 14704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542315573 of field osm_id of feature 14705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821057 of field osm_id of feature 14706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821060 of field osm_id of feature 14707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821061 of field osm_id of feature 14708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542319171 of field osm_id of feature 14709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821274 of field osm_id of feature 14710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821277 of field osm_id of feature 14711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165821277 of field osm_id of feature 14712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542319175 of field osm_id of feature 14713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542319175 of field osm_id of feature 14714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165945111 of field osm_id of feature 14715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542319177 of field osm_id of feature 14716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165947149 of field osm_id of feature 14717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542320515 of field osm_id of feature 14718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 165947150 of field osm_id of feature 14719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542320516 of field osm_id of feature 14720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166311144 of field osm_id of feature 14721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166311144 of field osm_id of feature 14722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166311145 of field osm_id of feature 14723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166311146 of field osm_id of feature 14724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166328703 of field osm_id of feature 14725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542328242 of field osm_id of feature 14726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166501449 of field osm_id of feature 14727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166502302 of field osm_id of feature 14728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166502303 of field osm_id of feature 14729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166502896 of field osm_id of feature 14730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166513422 of field osm_id of feature 14731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166516198 of field osm_id of feature 14732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166522978 of field osm_id of feature 14733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166522979 of field osm_id of feature 14734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166522985 of field osm_id of feature 14735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166522987 of field osm_id of feature 14736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523217 of field osm_id of feature 14737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523220 of field osm_id of feature 14738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523222 of field osm_id of feature 14739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523225 of field osm_id of feature 14740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523290 of field osm_id of feature 14741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523291 of field osm_id of feature 14742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523292 of field osm_id of feature 14743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523293 of field osm_id of feature 14744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523755 of field osm_id of feature 14745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523756 of field osm_id of feature 14746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523757 of field osm_id of feature 14747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523758 of field osm_id of feature 14748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166523759 of field osm_id of feature 14749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166526952 of field osm_id of feature 14750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166526956 of field osm_id of feature 14751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166527473 of field osm_id of feature 14752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166527474 of field osm_id of feature 14753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166530733 of field osm_id of feature 14754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166530734 of field osm_id of feature 14755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542340617 of field osm_id of feature 14756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542341160 of field osm_id of feature 14757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542341161 of field osm_id of feature 14758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542342035 of field osm_id of feature 14759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542342037 of field osm_id of feature 14760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542342039 of field osm_id of feature 14761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542344791 of field osm_id of feature 14762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166563021 of field osm_id of feature 14763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542344792 of field osm_id of feature 14764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166570299 of field osm_id of feature 14765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166570302 of field osm_id of feature 14766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166570303 of field osm_id of feature 14767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166571435 of field osm_id of feature 14768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166571437 of field osm_id of feature 14769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166571438 of field osm_id of feature 14770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166702718 of field osm_id of feature 14771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542348233 of field osm_id of feature 14772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166702719 of field osm_id of feature 14773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542348234 of field osm_id of feature 14774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166702720 of field osm_id of feature 14775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542348235 of field osm_id of feature 14776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166702721 of field osm_id of feature 14777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 542348236 of field osm_id of feature 14778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166721998 of field osm_id of feature 14779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166721998 of field osm_id of feature 14780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166721999 of field osm_id of feature 14781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166721999 of field osm_id of feature 14782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166722000 of field osm_id of feature 14783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166722001 of field osm_id of feature 14784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166722002 of field osm_id of feature 14785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166722003 of field osm_id of feature 14786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166722004 of field osm_id of feature 14787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166724399 of field osm_id of feature 14788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166724400 of field osm_id of feature 14789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166726027 of field osm_id of feature 14790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166726028 of field osm_id of feature 14791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166726755 of field osm_id of feature 14792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166741187 of field osm_id of feature 14793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166741191 of field osm_id of feature 14794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166741192 of field osm_id of feature 14795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166741193 of field osm_id of feature 14796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166741193 of field osm_id of feature 14797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166747437 of field osm_id of feature 14798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166747438 of field osm_id of feature 14799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166747444 of field osm_id of feature 14800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166747446 of field osm_id of feature 14801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166747447 of field osm_id of feature 14802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166750118 of field osm_id of feature 14803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166750119 of field osm_id of feature 14804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166750120 of field osm_id of feature 14805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166756838 of field osm_id of feature 14806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166756839 of field osm_id of feature 14807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166756839 of field osm_id of feature 14808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166805797 of field osm_id of feature 14809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807217 of field osm_id of feature 14810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807218 of field osm_id of feature 14811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807219 of field osm_id of feature 14812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807220 of field osm_id of feature 14813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807221 of field osm_id of feature 14814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807222 of field osm_id of feature 14815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807223 of field osm_id of feature 14816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807224 of field osm_id of feature 14817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807225 of field osm_id of feature 14818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166807226 of field osm_id of feature 14819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166850588 of field osm_id of feature 14820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166850934 of field osm_id of feature 14821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166851750 of field osm_id of feature 14822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853586 of field osm_id of feature 14823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853587 of field osm_id of feature 14824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853588 of field osm_id of feature 14825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853589 of field osm_id of feature 14826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853590 of field osm_id of feature 14827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853592 of field osm_id of feature 14828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853593 of field osm_id of feature 14829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166853594 of field osm_id of feature 14830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166868858 of field osm_id of feature 14831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166868858 of field osm_id of feature 14832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166868860 of field osm_id of feature 14833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166871850 of field osm_id of feature 14834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166871851 of field osm_id of feature 14835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166875622 of field osm_id of feature 14836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166875623 of field osm_id of feature 14837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166875624 of field osm_id of feature 14838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166876664 of field osm_id of feature 14839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166878846 of field osm_id of feature 14840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166878847 of field osm_id of feature 14841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166974054 of field osm_id of feature 14842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166975170 of field osm_id of feature 14843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166975171 of field osm_id of feature 14844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166975172 of field osm_id of feature 14845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166975173 of field osm_id of feature 14846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166975175 of field osm_id of feature 14847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166987973 of field osm_id of feature 14848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166987974 of field osm_id of feature 14849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166987975 of field osm_id of feature 14850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 166987976 of field osm_id of feature 14851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543127460 of field osm_id of feature 14852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543127461 of field osm_id of feature 14853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543128083 of field osm_id of feature 14854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543128084 of field osm_id of feature 14855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167091890 of field osm_id of feature 14856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167091890 of field osm_id of feature 14857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093698 of field osm_id of feature 14858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093701 of field osm_id of feature 14859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093703 of field osm_id of feature 14860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159881 of field osm_id of feature 14861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093704 of field osm_id of feature 14862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159882 of field osm_id of feature 14863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093706 of field osm_id of feature 14864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159883 of field osm_id of feature 14865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093708 of field osm_id of feature 14866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159892 of field osm_id of feature 14867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093714 of field osm_id of feature 14868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159893 of field osm_id of feature 14869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167093715 of field osm_id of feature 14870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543159894 of field osm_id of feature 14871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095447 of field osm_id of feature 14872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095448 of field osm_id of feature 14873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095449 of field osm_id of feature 14874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095450 of field osm_id of feature 14875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095451 of field osm_id of feature 14876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167095452 of field osm_id of feature 14877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167096036 of field osm_id of feature 14878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167096038 of field osm_id of feature 14879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167096970 of field osm_id of feature 14880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167097735 of field osm_id of feature 14881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167097736 of field osm_id of feature 14882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543166480 of field osm_id of feature 14883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543166481 of field osm_id of feature 14884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167293153 of field osm_id of feature 14885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167436118 of field osm_id of feature 14886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167436119 of field osm_id of feature 14887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438913 of field osm_id of feature 14888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438914 of field osm_id of feature 14889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438914 of field osm_id of feature 14890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438916 of field osm_id of feature 14891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438917 of field osm_id of feature 14892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438918 of field osm_id of feature 14893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438920 of field osm_id of feature 14894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438921 of field osm_id of feature 14895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167438922 of field osm_id of feature 14896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441663 of field osm_id of feature 14897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441664 of field osm_id of feature 14898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441666 of field osm_id of feature 14899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441669 of field osm_id of feature 14900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441670 of field osm_id of feature 14901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441671 of field osm_id of feature 14902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167441672 of field osm_id of feature 14903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167446160 of field osm_id of feature 14904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167446161 of field osm_id of feature 14905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167446162 of field osm_id of feature 14906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167446165 of field osm_id of feature 14907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167446166 of field osm_id of feature 14908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167447909 of field osm_id of feature 14909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167447916 of field osm_id of feature 14910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167447919 of field osm_id of feature 14911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167447921 of field osm_id of feature 14912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167447921 of field osm_id of feature 14913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167462989 of field osm_id of feature 14914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167462990 of field osm_id of feature 14915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167462991 of field osm_id of feature 14916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167472313 of field osm_id of feature 14917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167499008 of field osm_id of feature 14918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167499009 of field osm_id of feature 14919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167499010 of field osm_id of feature 14920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167499011 of field osm_id of feature 14921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167499454 of field osm_id of feature 14922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167580557 of field osm_id of feature 14923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167580558 of field osm_id of feature 14924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167580559 of field osm_id of feature 14925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183406 of field osm_id of feature 14926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167580560 of field osm_id of feature 14927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183407 of field osm_id of feature 14928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583157 of field osm_id of feature 14929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583157 of field osm_id of feature 14930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583157 of field osm_id of feature 14931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183408 of field osm_id of feature 14932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583158 of field osm_id of feature 14933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583158 of field osm_id of feature 14934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183409 of field osm_id of feature 14935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583159 of field osm_id of feature 14936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183410 of field osm_id of feature 14937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583160 of field osm_id of feature 14938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183411 of field osm_id of feature 14939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183411 of field osm_id of feature 14940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583161 of field osm_id of feature 14941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183412 of field osm_id of feature 14942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583162 of field osm_id of feature 14943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183413 of field osm_id of feature 14944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167583163 of field osm_id of feature 14945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183414 of field osm_id of feature 14946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543183415 of field osm_id of feature 14947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167608631 of field osm_id of feature 14948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167608633 of field osm_id of feature 14949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167609011 of field osm_id of feature 14950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167609012 of field osm_id of feature 14951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167610764 of field osm_id of feature 14952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167618872 of field osm_id of feature 14953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167621973 of field osm_id of feature 14954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167621974 of field osm_id of feature 14955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167629418 of field osm_id of feature 14956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167631162 of field osm_id of feature 14957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167631163 of field osm_id of feature 14958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167631176 of field osm_id of feature 14959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167632062 of field osm_id of feature 14960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167632063 of field osm_id of feature 14961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167632064 of field osm_id of feature 14962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167632065 of field osm_id of feature 14963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167632067 of field osm_id of feature 14964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543191975 of field osm_id of feature 14965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648617 of field osm_id of feature 14966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648617 of field osm_id of feature 14967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648617 of field osm_id of feature 14968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648617 of field osm_id of feature 14969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648618 of field osm_id of feature 14970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648620 of field osm_id of feature 14971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167648624 of field osm_id of feature 14972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167656816 of field osm_id of feature 14973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167656817 of field osm_id of feature 14974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167656818 of field osm_id of feature 14975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167660018 of field osm_id of feature 14976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167667597 of field osm_id of feature 14977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167667598 of field osm_id of feature 14978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167667598 of field osm_id of feature 14979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543193906 of field osm_id of feature 14980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167673151 of field osm_id of feature 14981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167681511 of field osm_id of feature 14982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167681986 of field osm_id of feature 14983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688562 of field osm_id of feature 14984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688565 of field osm_id of feature 14985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688566 of field osm_id of feature 14986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688567 of field osm_id of feature 14987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688568 of field osm_id of feature 14988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167688569 of field osm_id of feature 14989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167689661 of field osm_id of feature 14990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167689662 of field osm_id of feature 14991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167690396 of field osm_id of feature 14992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167690398 of field osm_id of feature 14993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167690398 of field osm_id of feature 14994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167801143 of field osm_id of feature 14995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167801144 of field osm_id of feature 14996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543193923 of field osm_id of feature 14997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167801145 of field osm_id of feature 14998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167801870 of field osm_id of feature 14999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167803328 of field osm_id of feature 15000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167803329 of field osm_id of feature 15001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167803330 of field osm_id of feature 15002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167803330 of field osm_id of feature 15003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809409 of field osm_id of feature 15004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809412 of field osm_id of feature 15005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809416 of field osm_id of feature 15006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809417 of field osm_id of feature 15007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543194304 of field osm_id of feature 15008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809418 of field osm_id of feature 15009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543194305 of field osm_id of feature 15010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543194305 of field osm_id of feature 15011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809641 of field osm_id of feature 15012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543194396 of field osm_id of feature 15013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167809642 of field osm_id of feature 15014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543194397 of field osm_id of feature 15015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167810325 of field osm_id of feature 15016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813073 of field osm_id of feature 15017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813074 of field osm_id of feature 15018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813075 of field osm_id of feature 15019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813076 of field osm_id of feature 15020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813077 of field osm_id of feature 15021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167813078 of field osm_id of feature 15022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167814633 of field osm_id of feature 15023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167814635 of field osm_id of feature 15024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167823728 of field osm_id of feature 15025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167823735 of field osm_id of feature 15026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167825606 of field osm_id of feature 15027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167847677 of field osm_id of feature 15028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167847677 of field osm_id of feature 15029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167854612 of field osm_id of feature 15030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167854613 of field osm_id of feature 15031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167942030 of field osm_id of feature 15032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167943191 of field osm_id of feature 15033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543196608 of field osm_id of feature 15034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167943202 of field osm_id of feature 15035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167947915 of field osm_id of feature 15036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167947917 of field osm_id of feature 15037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167948883 of field osm_id of feature 15038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167948884 of field osm_id of feature 15039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 167951455 of field osm_id of feature 15040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168038843 of field osm_id of feature 15041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168043023 of field osm_id of feature 15042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168043026 of field osm_id of feature 15043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168093109 of field osm_id of feature 15044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168093115 of field osm_id of feature 15045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151943 of field osm_id of feature 15046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151943 of field osm_id of feature 15047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151944 of field osm_id of feature 15048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151944 of field osm_id of feature 15049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151945 of field osm_id of feature 15050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151946 of field osm_id of feature 15051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151947 of field osm_id of feature 15052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151947 of field osm_id of feature 15053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151948 of field osm_id of feature 15054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151948 of field osm_id of feature 15055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151949 of field osm_id of feature 15056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168151949 of field osm_id of feature 15057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168163471 of field osm_id of feature 15058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168163471 of field osm_id of feature 15059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168163472 of field osm_id of feature 15060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168163473 of field osm_id of feature 15061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168166338 of field osm_id of feature 15062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168166339 of field osm_id of feature 15063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168166340 of field osm_id of feature 15064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168166343 of field osm_id of feature 15065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543201602 of field osm_id of feature 15066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543201603 of field osm_id of feature 15067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168189202 of field osm_id of feature 15068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168189203 of field osm_id of feature 15069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194902 of field osm_id of feature 15070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194903 of field osm_id of feature 15071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194904 of field osm_id of feature 15072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194905 of field osm_id of feature 15073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194909 of field osm_id of feature 15074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194912 of field osm_id of feature 15075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194913 of field osm_id of feature 15076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194914 of field osm_id of feature 15077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194915 of field osm_id of feature 15078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168194916 of field osm_id of feature 15079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168195501 of field osm_id of feature 15080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168195502 of field osm_id of feature 15081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168198604 of field osm_id of feature 15082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168198606 of field osm_id of feature 15083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543208189 of field osm_id of feature 15084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543208190 of field osm_id of feature 15085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543208448 of field osm_id of feature 15086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543208449 of field osm_id of feature 15087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168241645 of field osm_id of feature 15088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168241646 of field osm_id of feature 15089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168241649 of field osm_id of feature 15090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242577 of field osm_id of feature 15091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242583 of field osm_id of feature 15092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242585 of field osm_id of feature 15093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242587 of field osm_id of feature 15094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242588 of field osm_id of feature 15095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242589 of field osm_id of feature 15096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242590 of field osm_id of feature 15097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168242591 of field osm_id of feature 15098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243071 of field osm_id of feature 15099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243071 of field osm_id of feature 15100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243072 of field osm_id of feature 15101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243073 of field osm_id of feature 15102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243075 of field osm_id of feature 15103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243076 of field osm_id of feature 15104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168243078 of field osm_id of feature 15105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168422713 of field osm_id of feature 15106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168422949 of field osm_id of feature 15107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168422950 of field osm_id of feature 15108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168423194 of field osm_id of feature 15109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168423878 of field osm_id of feature 15110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168423880 of field osm_id of feature 15111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168423881 of field osm_id of feature 15112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168423882 of field osm_id of feature 15113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168522029 of field osm_id of feature 15114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168817716 of field osm_id of feature 15115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543315302 of field osm_id of feature 15116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543315303 of field osm_id of feature 15117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168949802 of field osm_id of feature 15118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 168959329 of field osm_id of feature 15119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169226633 of field osm_id of feature 15120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169226634 of field osm_id of feature 15121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169226635 of field osm_id of feature 15122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169226636 of field osm_id of feature 15123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169226637 of field osm_id of feature 15124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169421671 of field osm_id of feature 15125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169492373 of field osm_id of feature 15126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169526700 of field osm_id of feature 15127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543323707 of field osm_id of feature 15128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543323708 of field osm_id of feature 15129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169735608 of field osm_id of feature 15130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169740701 of field osm_id of feature 15131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742580 of field osm_id of feature 15132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742581 of field osm_id of feature 15133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742581 of field osm_id of feature 15134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742582 of field osm_id of feature 15135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742583 of field osm_id of feature 15136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169742584 of field osm_id of feature 15137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543329196 of field osm_id of feature 15138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169754657 of field osm_id of feature 15139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 169754659 of field osm_id of feature 15140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006847 of field osm_id of feature 15141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006848 of field osm_id of feature 15142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006848 of field osm_id of feature 15143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006849 of field osm_id of feature 15144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006849 of field osm_id of feature 15145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006850 of field osm_id of feature 15146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006850 of field osm_id of feature 15147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006851 of field osm_id of feature 15148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006852 of field osm_id of feature 15149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006912 of field osm_id of feature 15150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006913 of field osm_id of feature 15151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170006913 of field osm_id of feature 15152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170015784 of field osm_id of feature 15153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170015784 of field osm_id of feature 15154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170015784 of field osm_id of feature 15155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170015786 of field osm_id of feature 15156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170086732 of field osm_id of feature 15157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170089399 of field osm_id of feature 15158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170098954 of field osm_id of feature 15159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170098955 of field osm_id of feature 15160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170237392 of field osm_id of feature 15161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543339228 of field osm_id of feature 15162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543339229 of field osm_id of feature 15163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543339230 of field osm_id of feature 15164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170502602 of field osm_id of feature 15165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170502688 of field osm_id of feature 15166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170502688 of field osm_id of feature 15167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170661183 of field osm_id of feature 15168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170661184 of field osm_id of feature 15169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170731616 of field osm_id of feature 15170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170731617 of field osm_id of feature 15171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170731618 of field osm_id of feature 15172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732496 of field osm_id of feature 15173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732497 of field osm_id of feature 15174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732498 of field osm_id of feature 15175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732499 of field osm_id of feature 15176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732500 of field osm_id of feature 15177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732501 of field osm_id of feature 15178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732502 of field osm_id of feature 15179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732503 of field osm_id of feature 15180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732504 of field osm_id of feature 15181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170732505 of field osm_id of feature 15182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170733136 of field osm_id of feature 15183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170735106 of field osm_id of feature 15184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170735107 of field osm_id of feature 15185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170735668 of field osm_id of feature 15186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170735679 of field osm_id of feature 15187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543352609 of field osm_id of feature 15188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543352614 of field osm_id of feature 15189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170736919 of field osm_id of feature 15190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739251 of field osm_id of feature 15191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739252 of field osm_id of feature 15192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739252 of field osm_id of feature 15193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739253 of field osm_id of feature 15194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739254 of field osm_id of feature 15195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170739254 of field osm_id of feature 15196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170741589 of field osm_id of feature 15197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170741590 of field osm_id of feature 15198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744016 of field osm_id of feature 15199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744017 of field osm_id of feature 15200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744018 of field osm_id of feature 15201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744019 of field osm_id of feature 15202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744020 of field osm_id of feature 15203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744021 of field osm_id of feature 15204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744022 of field osm_id of feature 15205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744023 of field osm_id of feature 15206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744024 of field osm_id of feature 15207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543365766 of field osm_id of feature 15208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744025 of field osm_id of feature 15209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543365768 of field osm_id of feature 15210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744026 of field osm_id of feature 15211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543365769 of field osm_id of feature 15212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744027 of field osm_id of feature 15213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543365770 of field osm_id of feature 15214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744028 of field osm_id of feature 15215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744029 of field osm_id of feature 15216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744030 of field osm_id of feature 15217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744031 of field osm_id of feature 15218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744032 of field osm_id of feature 15219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170744033 of field osm_id of feature 15220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170747014 of field osm_id of feature 15221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170753707 of field osm_id of feature 15222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170753708 of field osm_id of feature 15223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170753721 of field osm_id of feature 15224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170753722 of field osm_id of feature 15225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170753725 of field osm_id of feature 15226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543368025 of field osm_id of feature 15227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796310 of field osm_id of feature 15228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796312 of field osm_id of feature 15229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796313 of field osm_id of feature 15230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796316 of field osm_id of feature 15231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796319 of field osm_id of feature 15232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796320 of field osm_id of feature 15233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796321 of field osm_id of feature 15234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796322 of field osm_id of feature 15235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796323 of field osm_id of feature 15236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796324 of field osm_id of feature 15237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796329 of field osm_id of feature 15238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796330 of field osm_id of feature 15239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796331 of field osm_id of feature 15240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796335 of field osm_id of feature 15241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796336 of field osm_id of feature 15242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796338 of field osm_id of feature 15243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796339 of field osm_id of feature 15244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796340 of field osm_id of feature 15245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796341 of field osm_id of feature 15246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170796342 of field osm_id of feature 15247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170841293 of field osm_id of feature 15248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860063 of field osm_id of feature 15249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860064 of field osm_id of feature 15250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860066 of field osm_id of feature 15251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860069 of field osm_id of feature 15252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860071 of field osm_id of feature 15253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860076 of field osm_id of feature 15254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860076 of field osm_id of feature 15255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860077 of field osm_id of feature 15256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860134 of field osm_id of feature 15257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860137 of field osm_id of feature 15258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170860139 of field osm_id of feature 15259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170861139 of field osm_id of feature 15260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170861145 of field osm_id of feature 15261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170861155 of field osm_id of feature 15262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864838 of field osm_id of feature 15263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864840 of field osm_id of feature 15264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864840 of field osm_id of feature 15265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864841 of field osm_id of feature 15266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864842 of field osm_id of feature 15267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864843 of field osm_id of feature 15268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864844 of field osm_id of feature 15269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864845 of field osm_id of feature 15270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864846 of field osm_id of feature 15271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864847 of field osm_id of feature 15272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864847 of field osm_id of feature 15273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864848 of field osm_id of feature 15274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864850 of field osm_id of feature 15275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864851 of field osm_id of feature 15276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864857 of field osm_id of feature 15277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170864858 of field osm_id of feature 15278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170867835 of field osm_id of feature 15279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170867837 of field osm_id of feature 15280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170867839 of field osm_id of feature 15281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170867840 of field osm_id of feature 15282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868650 of field osm_id of feature 15283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868651 of field osm_id of feature 15284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868653 of field osm_id of feature 15285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868654 of field osm_id of feature 15286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868655 of field osm_id of feature 15287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868657 of field osm_id of feature 15288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868658 of field osm_id of feature 15289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170868660 of field osm_id of feature 15290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870379 of field osm_id of feature 15291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870380 of field osm_id of feature 15292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870380 of field osm_id of feature 15293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870380 of field osm_id of feature 15294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870383 of field osm_id of feature 15295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170870383 of field osm_id of feature 15296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872145 of field osm_id of feature 15297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872152 of field osm_id of feature 15298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872165 of field osm_id of feature 15299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872166 of field osm_id of feature 15300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872167 of field osm_id of feature 15301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872168 of field osm_id of feature 15302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170872169 of field osm_id of feature 15303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170950179 of field osm_id of feature 15304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170950180 of field osm_id of feature 15305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170950185 of field osm_id of feature 15306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170952516 of field osm_id of feature 15307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170952518 of field osm_id of feature 15308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543412459 of field osm_id of feature 15309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543412460 of field osm_id of feature 15310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543522192 of field osm_id of feature 15311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543522193 of field osm_id of feature 15312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543522194 of field osm_id of feature 15313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543522195 of field osm_id of feature 15314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170964753 of field osm_id of feature 15315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170964753 of field osm_id of feature 15316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170964756 of field osm_id of feature 15317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170968190 of field osm_id of feature 15318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170968193 of field osm_id of feature 15319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170969411 of field osm_id of feature 15320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170969412 of field osm_id of feature 15321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170969414 of field osm_id of feature 15322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170969415 of field osm_id of feature 15323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 170969781 of field osm_id of feature 15324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564791 of field osm_id of feature 15325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564792 of field osm_id of feature 15326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564793 of field osm_id of feature 15327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564794 of field osm_id of feature 15328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564795 of field osm_id of feature 15329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543564796 of field osm_id of feature 15330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543566422 of field osm_id of feature 15331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543566423 of field osm_id of feature 15332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543566424 of field osm_id of feature 15333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543591633 of field osm_id of feature 15334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543592498 of field osm_id of feature 15335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543603817 of field osm_id of feature 15336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 171347319 of field osm_id of feature 15337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 171979078 of field osm_id of feature 15338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 171979099 of field osm_id of feature 15339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 171981654 of field osm_id of feature 15340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172009699 of field osm_id of feature 15341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032214 of field osm_id of feature 15342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032215 of field osm_id of feature 15343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032216 of field osm_id of feature 15344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032217 of field osm_id of feature 15345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032217 of field osm_id of feature 15346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032218 of field osm_id of feature 15347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032219 of field osm_id of feature 15348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032219 of field osm_id of feature 15349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032220 of field osm_id of feature 15350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032682 of field osm_id of feature 15351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032682 of field osm_id of feature 15352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032793 of field osm_id of feature 15353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172032794 of field osm_id of feature 15354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065637 of field osm_id of feature 15355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065638 of field osm_id of feature 15356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065640 of field osm_id of feature 15357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065641 of field osm_id of feature 15358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065642 of field osm_id of feature 15359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065643 of field osm_id of feature 15360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065692 of field osm_id of feature 15361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172065693 of field osm_id of feature 15362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172066372 of field osm_id of feature 15363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172066373 of field osm_id of feature 15364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172067793 of field osm_id of feature 15365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172067794 of field osm_id of feature 15366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172067795 of field osm_id of feature 15367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172067795 of field osm_id of feature 15368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172067796 of field osm_id of feature 15369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543740755 of field osm_id of feature 15370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172111896 of field osm_id of feature 15371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172112178 of field osm_id of feature 15372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172112179 of field osm_id of feature 15373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172112180 of field osm_id of feature 15374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172112181 of field osm_id of feature 15375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543756576 of field osm_id of feature 15376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543756578 of field osm_id of feature 15377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172202922 of field osm_id of feature 15378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172202922 of field osm_id of feature 15379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172207317 of field osm_id of feature 15380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543757419 of field osm_id of feature 15381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543757420 of field osm_id of feature 15382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172209867 of field osm_id of feature 15383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172209868 of field osm_id of feature 15384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172212331 of field osm_id of feature 15385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172214823 of field osm_id of feature 15386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172214823 of field osm_id of feature 15387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172270422 of field osm_id of feature 15388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172274257 of field osm_id of feature 15389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172274328 of field osm_id of feature 15390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172307473 of field osm_id of feature 15391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172307473 of field osm_id of feature 15392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172318807 of field osm_id of feature 15393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172330017 of field osm_id of feature 15394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172330082 of field osm_id of feature 15395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543784380 of field osm_id of feature 15396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333901 of field osm_id of feature 15397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333901 of field osm_id of feature 15398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333902 of field osm_id of feature 15399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333902 of field osm_id of feature 15400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333903 of field osm_id of feature 15401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172333904 of field osm_id of feature 15402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172341004 of field osm_id of feature 15403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543785288 of field osm_id of feature 15404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172341005 of field osm_id of feature 15405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543785289 of field osm_id of feature 15406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172341852 of field osm_id of feature 15407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172343296 of field osm_id of feature 15408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172344205 of field osm_id of feature 15409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172344206 of field osm_id of feature 15410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172344433 of field osm_id of feature 15411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172344435 of field osm_id of feature 15412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172344438 of field osm_id of feature 15413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172360754 of field osm_id of feature 15414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172360758 of field osm_id of feature 15415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172363381 of field osm_id of feature 15416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172367138 of field osm_id of feature 15417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172367140 of field osm_id of feature 15418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543788289 of field osm_id of feature 15419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172387179 of field osm_id of feature 15420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543790228 of field osm_id of feature 15421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543939390 of field osm_id of feature 15422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543939391 of field osm_id of feature 15423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543939392 of field osm_id of feature 15424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172481798 of field osm_id of feature 15425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543952822 of field osm_id of feature 15426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543955964 of field osm_id of feature 15427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543958625 of field osm_id of feature 15428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543958626 of field osm_id of feature 15429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172500432 of field osm_id of feature 15430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172518479 of field osm_id of feature 15431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172518479 of field osm_id of feature 15432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172518480 of field osm_id of feature 15433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172531510 of field osm_id of feature 15434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172533484 of field osm_id of feature 15435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172533488 of field osm_id of feature 15436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172533489 of field osm_id of feature 15437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543978502 of field osm_id of feature 15438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543982477 of field osm_id of feature 15439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172712606 of field osm_id of feature 15440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543982479 of field osm_id of feature 15441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172750680 of field osm_id of feature 15442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543982480 of field osm_id of feature 15443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172814075 of field osm_id of feature 15444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172840941 of field osm_id of feature 15445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172840946 of field osm_id of feature 15446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172841671 of field osm_id of feature 15447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172841672 of field osm_id of feature 15448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172846385 of field osm_id of feature 15449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172846386 of field osm_id of feature 15450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543992737 of field osm_id of feature 15451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 543994204 of field osm_id of feature 15452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172904277 of field osm_id of feature 15453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172904279 of field osm_id of feature 15454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172904556 of field osm_id of feature 15455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172917133 of field osm_id of feature 15456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 172917134 of field osm_id of feature 15457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173010433 of field osm_id of feature 15458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544006941 of field osm_id of feature 15459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544045167 of field osm_id of feature 15460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544045169 of field osm_id of feature 15461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544045821 of field osm_id of feature 15462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544048837 of field osm_id of feature 15463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173028323 of field osm_id of feature 15464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173028324 of field osm_id of feature 15465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544439299 of field osm_id of feature 15466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173089102 of field osm_id of feature 15467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173089597 of field osm_id of feature 15468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173089599 of field osm_id of feature 15469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166836 of field osm_id of feature 15470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166837 of field osm_id of feature 15471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166838 of field osm_id of feature 15472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166840 of field osm_id of feature 15473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166842 of field osm_id of feature 15474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166844 of field osm_id of feature 15475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166845 of field osm_id of feature 15476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166846 of field osm_id of feature 15477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166847 of field osm_id of feature 15478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166848 of field osm_id of feature 15479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166848 of field osm_id of feature 15480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166849 of field osm_id of feature 15481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166850 of field osm_id of feature 15482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166852 of field osm_id of feature 15483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166853 of field osm_id of feature 15484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166854 of field osm_id of feature 15485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166855 of field osm_id of feature 15486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166856 of field osm_id of feature 15487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166857 of field osm_id of feature 15488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166858 of field osm_id of feature 15489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166860 of field osm_id of feature 15490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166860 of field osm_id of feature 15491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166861 of field osm_id of feature 15492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166862 of field osm_id of feature 15493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166863 of field osm_id of feature 15494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166864 of field osm_id of feature 15495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166868 of field osm_id of feature 15496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166870 of field osm_id of feature 15497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166872 of field osm_id of feature 15498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166873 of field osm_id of feature 15499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166876 of field osm_id of feature 15500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166878 of field osm_id of feature 15501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166879 of field osm_id of feature 15502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166879 of field osm_id of feature 15503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166880 of field osm_id of feature 15504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166881 of field osm_id of feature 15505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166882 of field osm_id of feature 15506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166883 of field osm_id of feature 15507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166884 of field osm_id of feature 15508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166884 of field osm_id of feature 15509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166885 of field osm_id of feature 15510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166887 of field osm_id of feature 15511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166887 of field osm_id of feature 15512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166888 of field osm_id of feature 15513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166889 of field osm_id of feature 15514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166891 of field osm_id of feature 15515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166893 of field osm_id of feature 15516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166895 of field osm_id of feature 15517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166896 of field osm_id of feature 15518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166897 of field osm_id of feature 15519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166898 of field osm_id of feature 15520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166899 of field osm_id of feature 15521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166900 of field osm_id of feature 15522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166901 of field osm_id of feature 15523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166902 of field osm_id of feature 15524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166905 of field osm_id of feature 15525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166906 of field osm_id of feature 15526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173166907 of field osm_id of feature 15527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177320 of field osm_id of feature 15528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177321 of field osm_id of feature 15529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177322 of field osm_id of feature 15530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177323 of field osm_id of feature 15531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177381 of field osm_id of feature 15532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177382 of field osm_id of feature 15533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177385 of field osm_id of feature 15534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173177387 of field osm_id of feature 15535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173182605 of field osm_id of feature 15536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173182606 of field osm_id of feature 15537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173182607 of field osm_id of feature 15538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173182608 of field osm_id of feature 15539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173182613 of field osm_id of feature 15540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173191080 of field osm_id of feature 15541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173191082 of field osm_id of feature 15542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173196573 of field osm_id of feature 15543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173196574 of field osm_id of feature 15544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173196575 of field osm_id of feature 15545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173196576 of field osm_id of feature 15546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173235522 of field osm_id of feature 15547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173235523 of field osm_id of feature 15548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173235575 of field osm_id of feature 15549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173243146 of field osm_id of feature 15550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173243172 of field osm_id of feature 15551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274095 of field osm_id of feature 15552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274099 of field osm_id of feature 15553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274100 of field osm_id of feature 15554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274722 of field osm_id of feature 15555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274723 of field osm_id of feature 15556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274724 of field osm_id of feature 15557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274725 of field osm_id of feature 15558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274726 of field osm_id of feature 15559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274727 of field osm_id of feature 15560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274728 of field osm_id of feature 15561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173274729 of field osm_id of feature 15562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173277908 of field osm_id of feature 15563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173277915 of field osm_id of feature 15564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173278372 of field osm_id of feature 15565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173391655 of field osm_id of feature 15566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173391661 of field osm_id of feature 15567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544626851 of field osm_id of feature 15568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544626852 of field osm_id of feature 15569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544626855 of field osm_id of feature 15570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544629093 of field osm_id of feature 15571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544629094 of field osm_id of feature 15572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544629095 of field osm_id of feature 15573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544642862 of field osm_id of feature 15574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544642863 of field osm_id of feature 15575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648575 of field osm_id of feature 15576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648576 of field osm_id of feature 15577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648577 of field osm_id of feature 15578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648578 of field osm_id of feature 15579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648579 of field osm_id of feature 15580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544648580 of field osm_id of feature 15581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544650071 of field osm_id of feature 15582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544650072 of field osm_id of feature 15583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544650073 of field osm_id of feature 15584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544653808 of field osm_id of feature 15585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173469662 of field osm_id of feature 15586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544653872 of field osm_id of feature 15587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173469665 of field osm_id of feature 15588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173469951 of field osm_id of feature 15589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173471862 of field osm_id of feature 15590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173474966 of field osm_id of feature 15591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173478542 of field osm_id of feature 15592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173478543 of field osm_id of feature 15593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173480585 of field osm_id of feature 15594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173482602 of field osm_id of feature 15595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173482603 of field osm_id of feature 15596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544655700 of field osm_id of feature 15597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544655701 of field osm_id of feature 15598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544655702 of field osm_id of feature 15599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173489548 of field osm_id of feature 15600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173489549 of field osm_id of feature 15601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544656634 of field osm_id of feature 15602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544656635 of field osm_id of feature 15603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544658576 of field osm_id of feature 15604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544658576 of field osm_id of feature 15605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544658578 of field osm_id of feature 15606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544658578 of field osm_id of feature 15607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544659690 of field osm_id of feature 15608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544659691 of field osm_id of feature 15609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544659692 of field osm_id of feature 15610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173519451 of field osm_id of feature 15611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523089 of field osm_id of feature 15612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523296 of field osm_id of feature 15613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523297 of field osm_id of feature 15614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523298 of field osm_id of feature 15615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523300 of field osm_id of feature 15616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523597 of field osm_id of feature 15617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523598 of field osm_id of feature 15618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173523599 of field osm_id of feature 15619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544667491 of field osm_id of feature 15620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544670241 of field osm_id of feature 15621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544705543 of field osm_id of feature 15622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713394 of field osm_id of feature 15623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713396 of field osm_id of feature 15624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713397 of field osm_id of feature 15625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713398 of field osm_id of feature 15626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713399 of field osm_id of feature 15627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713401 of field osm_id of feature 15628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713404 of field osm_id of feature 15629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713407 of field osm_id of feature 15630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713409 of field osm_id of feature 15631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713412 of field osm_id of feature 15632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713414 of field osm_id of feature 15633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713415 of field osm_id of feature 15634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713416 of field osm_id of feature 15635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713417 of field osm_id of feature 15636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713418 of field osm_id of feature 15637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713419 of field osm_id of feature 15638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713420 of field osm_id of feature 15639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713422 of field osm_id of feature 15640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713423 of field osm_id of feature 15641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713426 of field osm_id of feature 15642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713427 of field osm_id of feature 15643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713429 of field osm_id of feature 15644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713431 of field osm_id of feature 15645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713434 of field osm_id of feature 15646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713439 of field osm_id of feature 15647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713439 of field osm_id of feature 15648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713440 of field osm_id of feature 15649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713440 of field osm_id of feature 15650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713441 of field osm_id of feature 15651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713442 of field osm_id of feature 15652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173713446 of field osm_id of feature 15653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816068 of field osm_id of feature 15654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767552 of field osm_id of feature 15655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816069 of field osm_id of feature 15656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767554 of field osm_id of feature 15657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816070 of field osm_id of feature 15658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767556 of field osm_id of feature 15659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767565 of field osm_id of feature 15660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767567 of field osm_id of feature 15661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816910 of field osm_id of feature 15662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767568 of field osm_id of feature 15663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816911 of field osm_id of feature 15664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816911 of field osm_id of feature 15665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767571 of field osm_id of feature 15666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767573 of field osm_id of feature 15667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767576 of field osm_id of feature 15668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767578 of field osm_id of feature 15669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767579 of field osm_id of feature 15670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544816916 of field osm_id of feature 15671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767580 of field osm_id of feature 15672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767581 of field osm_id of feature 15673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767584 of field osm_id of feature 15674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767585 of field osm_id of feature 15675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767586 of field osm_id of feature 15676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767587 of field osm_id of feature 15677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767588 of field osm_id of feature 15678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767589 of field osm_id of feature 15679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767590 of field osm_id of feature 15680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767591 of field osm_id of feature 15681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767592 of field osm_id of feature 15682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767593 of field osm_id of feature 15683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767597 of field osm_id of feature 15684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767598 of field osm_id of feature 15685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767599 of field osm_id of feature 15686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767605 of field osm_id of feature 15687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767608 of field osm_id of feature 15688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767609 of field osm_id of feature 15689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767613 of field osm_id of feature 15690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767617 of field osm_id of feature 15691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767617 of field osm_id of feature 15692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767618 of field osm_id of feature 15693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767618 of field osm_id of feature 15694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767619 of field osm_id of feature 15695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767621 of field osm_id of feature 15696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767629 of field osm_id of feature 15697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767631 of field osm_id of feature 15698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767633 of field osm_id of feature 15699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767637 of field osm_id of feature 15700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767640 of field osm_id of feature 15701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767643 of field osm_id of feature 15702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767645 of field osm_id of feature 15703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767647 of field osm_id of feature 15704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767648 of field osm_id of feature 15705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767649 of field osm_id of feature 15706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767650 of field osm_id of feature 15707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767651 of field osm_id of feature 15708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767652 of field osm_id of feature 15709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767653 of field osm_id of feature 15710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767654 of field osm_id of feature 15711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767655 of field osm_id of feature 15712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767656 of field osm_id of feature 15713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767657 of field osm_id of feature 15714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767658 of field osm_id of feature 15715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767659 of field osm_id of feature 15716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767660 of field osm_id of feature 15717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767661 of field osm_id of feature 15718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767662 of field osm_id of feature 15719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767663 of field osm_id of feature 15720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767664 of field osm_id of feature 15721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767665 of field osm_id of feature 15722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767666 of field osm_id of feature 15723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767667 of field osm_id of feature 15724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767668 of field osm_id of feature 15725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767669 of field osm_id of feature 15726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767670 of field osm_id of feature 15727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767671 of field osm_id of feature 15728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767672 of field osm_id of feature 15729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544824709 of field osm_id of feature 15730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767673 of field osm_id of feature 15731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544824710 of field osm_id of feature 15732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767674 of field osm_id of feature 15733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544824711 of field osm_id of feature 15734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767675 of field osm_id of feature 15735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829031 of field osm_id of feature 15736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767676 of field osm_id of feature 15737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829032 of field osm_id of feature 15738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767677 of field osm_id of feature 15739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829033 of field osm_id of feature 15740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767678 of field osm_id of feature 15741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829034 of field osm_id of feature 15742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767679 of field osm_id of feature 15743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829035 of field osm_id of feature 15744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767681 of field osm_id of feature 15745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544829036 of field osm_id of feature 15746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767682 of field osm_id of feature 15747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767684 of field osm_id of feature 15748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767685 of field osm_id of feature 15749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767687 of field osm_id of feature 15750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767690 of field osm_id of feature 15751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767692 of field osm_id of feature 15752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767693 of field osm_id of feature 15753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767694 of field osm_id of feature 15754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767695 of field osm_id of feature 15755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767696 of field osm_id of feature 15756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767697 of field osm_id of feature 15757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767698 of field osm_id of feature 15758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767699 of field osm_id of feature 15759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767700 of field osm_id of feature 15760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544832086 of field osm_id of feature 15761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544832086 of field osm_id of feature 15762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767701 of field osm_id of feature 15763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544832226 of field osm_id of feature 15764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767705 of field osm_id of feature 15765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544832227 of field osm_id of feature 15766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767707 of field osm_id of feature 15767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767708 of field osm_id of feature 15768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767710 of field osm_id of feature 15769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767712 of field osm_id of feature 15770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767713 of field osm_id of feature 15771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767715 of field osm_id of feature 15772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767718 of field osm_id of feature 15773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767720 of field osm_id of feature 15774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767721 of field osm_id of feature 15775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767725 of field osm_id of feature 15776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767726 of field osm_id of feature 15777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767727 of field osm_id of feature 15778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767728 of field osm_id of feature 15779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767730 of field osm_id of feature 15780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767731 of field osm_id of feature 15781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767731 of field osm_id of feature 15782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767732 of field osm_id of feature 15783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767732 of field osm_id of feature 15784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767733 of field osm_id of feature 15785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767733 of field osm_id of feature 15786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767734 of field osm_id of feature 15787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767735 of field osm_id of feature 15788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767736 of field osm_id of feature 15789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767736 of field osm_id of feature 15790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767737 of field osm_id of feature 15791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767738 of field osm_id of feature 15792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767739 of field osm_id of feature 15793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767740 of field osm_id of feature 15794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767741 of field osm_id of feature 15795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767742 of field osm_id of feature 15796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767743 of field osm_id of feature 15797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767744 of field osm_id of feature 15798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767745 of field osm_id of feature 15799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767746 of field osm_id of feature 15800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767747 of field osm_id of feature 15801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767748 of field osm_id of feature 15802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767749 of field osm_id of feature 15803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767752 of field osm_id of feature 15804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767753 of field osm_id of feature 15805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767754 of field osm_id of feature 15806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767755 of field osm_id of feature 15807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767756 of field osm_id of feature 15808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767757 of field osm_id of feature 15809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767759 of field osm_id of feature 15810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767760 of field osm_id of feature 15811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767761 of field osm_id of feature 15812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836268 of field osm_id of feature 15813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767762 of field osm_id of feature 15814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836271 of field osm_id of feature 15815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767765 of field osm_id of feature 15816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836274 of field osm_id of feature 15817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767769 of field osm_id of feature 15818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836277 of field osm_id of feature 15819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767770 of field osm_id of feature 15820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767771 of field osm_id of feature 15821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767773 of field osm_id of feature 15822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767774 of field osm_id of feature 15823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767774 of field osm_id of feature 15824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767775 of field osm_id of feature 15825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767775 of field osm_id of feature 15826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767776 of field osm_id of feature 15827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767776 of field osm_id of feature 15828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767777 of field osm_id of feature 15829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767778 of field osm_id of feature 15830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767779 of field osm_id of feature 15831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767780 of field osm_id of feature 15832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767781 of field osm_id of feature 15833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767782 of field osm_id of feature 15834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767783 of field osm_id of feature 15835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767785 of field osm_id of feature 15836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836657 of field osm_id of feature 15837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767786 of field osm_id of feature 15838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544836658 of field osm_id of feature 15839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767788 of field osm_id of feature 15840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767789 of field osm_id of feature 15841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767790 of field osm_id of feature 15842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767791 of field osm_id of feature 15843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767792 of field osm_id of feature 15844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767793 of field osm_id of feature 15845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767794 of field osm_id of feature 15846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767795 of field osm_id of feature 15847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767796 of field osm_id of feature 15848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767797 of field osm_id of feature 15849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767798 of field osm_id of feature 15850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767799 of field osm_id of feature 15851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767800 of field osm_id of feature 15852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767801 of field osm_id of feature 15853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767802 of field osm_id of feature 15854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767803 of field osm_id of feature 15855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767804 of field osm_id of feature 15856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767805 of field osm_id of feature 15857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767806 of field osm_id of feature 15858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767808 of field osm_id of feature 15859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767809 of field osm_id of feature 15860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767810 of field osm_id of feature 15861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767811 of field osm_id of feature 15862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767812 of field osm_id of feature 15863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767813 of field osm_id of feature 15864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767814 of field osm_id of feature 15865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767815 of field osm_id of feature 15866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767816 of field osm_id of feature 15867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767817 of field osm_id of feature 15868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767818 of field osm_id of feature 15869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767819 of field osm_id of feature 15870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767819 of field osm_id of feature 15871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767820 of field osm_id of feature 15872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767821 of field osm_id of feature 15873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767822 of field osm_id of feature 15874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767824 of field osm_id of feature 15875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767825 of field osm_id of feature 15876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767826 of field osm_id of feature 15877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767827 of field osm_id of feature 15878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767828 of field osm_id of feature 15879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767829 of field osm_id of feature 15880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767830 of field osm_id of feature 15881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767831 of field osm_id of feature 15882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767832 of field osm_id of feature 15883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767833 of field osm_id of feature 15884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767834 of field osm_id of feature 15885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767835 of field osm_id of feature 15886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767836 of field osm_id of feature 15887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767837 of field osm_id of feature 15888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767838 of field osm_id of feature 15889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767840 of field osm_id of feature 15890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767841 of field osm_id of feature 15891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767842 of field osm_id of feature 15892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767843 of field osm_id of feature 15893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767844 of field osm_id of feature 15894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767845 of field osm_id of feature 15895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767846 of field osm_id of feature 15896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767847 of field osm_id of feature 15897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767848 of field osm_id of feature 15898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767851 of field osm_id of feature 15899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767852 of field osm_id of feature 15900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767853 of field osm_id of feature 15901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767854 of field osm_id of feature 15902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767855 of field osm_id of feature 15903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767856 of field osm_id of feature 15904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767858 of field osm_id of feature 15905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767859 of field osm_id of feature 15906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767860 of field osm_id of feature 15907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767861 of field osm_id of feature 15908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767862 of field osm_id of feature 15909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767863 of field osm_id of feature 15910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767864 of field osm_id of feature 15911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767865 of field osm_id of feature 15912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767866 of field osm_id of feature 15913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767868 of field osm_id of feature 15914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767869 of field osm_id of feature 15915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767870 of field osm_id of feature 15916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767872 of field osm_id of feature 15917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767873 of field osm_id of feature 15918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767874 of field osm_id of feature 15919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767877 of field osm_id of feature 15920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767878 of field osm_id of feature 15921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767880 of field osm_id of feature 15922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767881 of field osm_id of feature 15923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767882 of field osm_id of feature 15924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767883 of field osm_id of feature 15925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767885 of field osm_id of feature 15926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767886 of field osm_id of feature 15927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767887 of field osm_id of feature 15928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767888 of field osm_id of feature 15929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767889 of field osm_id of feature 15930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767890 of field osm_id of feature 15931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767891 of field osm_id of feature 15932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767892 of field osm_id of feature 15933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767893 of field osm_id of feature 15934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767894 of field osm_id of feature 15935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767895 of field osm_id of feature 15936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767896 of field osm_id of feature 15937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767897 of field osm_id of feature 15938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767898 of field osm_id of feature 15939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767900 of field osm_id of feature 15940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767901 of field osm_id of feature 15941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767902 of field osm_id of feature 15942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767903 of field osm_id of feature 15943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767904 of field osm_id of feature 15944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767905 of field osm_id of feature 15945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767906 of field osm_id of feature 15946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767907 of field osm_id of feature 15947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767908 of field osm_id of feature 15948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767909 of field osm_id of feature 15949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767910 of field osm_id of feature 15950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767911 of field osm_id of feature 15951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767912 of field osm_id of feature 15952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767913 of field osm_id of feature 15953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767914 of field osm_id of feature 15954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767915 of field osm_id of feature 15955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767916 of field osm_id of feature 15956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767917 of field osm_id of feature 15957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767918 of field osm_id of feature 15958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767919 of field osm_id of feature 15959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767920 of field osm_id of feature 15960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767920 of field osm_id of feature 15961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767921 of field osm_id of feature 15962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767922 of field osm_id of feature 15963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767923 of field osm_id of feature 15964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767924 of field osm_id of feature 15965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767925 of field osm_id of feature 15966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767926 of field osm_id of feature 15967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767927 of field osm_id of feature 15968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767928 of field osm_id of feature 15969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767929 of field osm_id of feature 15970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767930 of field osm_id of feature 15971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767931 of field osm_id of feature 15972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767932 of field osm_id of feature 15973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767933 of field osm_id of feature 15974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767934 of field osm_id of feature 15975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767934 of field osm_id of feature 15976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767935 of field osm_id of feature 15977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767936 of field osm_id of feature 15978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767938 of field osm_id of feature 15979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767941 of field osm_id of feature 15980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767942 of field osm_id of feature 15981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767943 of field osm_id of feature 15982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767944 of field osm_id of feature 15983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767946 of field osm_id of feature 15984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767947 of field osm_id of feature 15985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767950 of field osm_id of feature 15986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767952 of field osm_id of feature 15987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767957 of field osm_id of feature 15988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767957 of field osm_id of feature 15989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767959 of field osm_id of feature 15990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767960 of field osm_id of feature 15991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767961 of field osm_id of feature 15992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767962 of field osm_id of feature 15993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767964 of field osm_id of feature 15994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767965 of field osm_id of feature 15995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767969 of field osm_id of feature 15996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767970 of field osm_id of feature 15997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767971 of field osm_id of feature 15998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767973 of field osm_id of feature 15999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767974 of field osm_id of feature 16000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767975 of field osm_id of feature 16001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767976 of field osm_id of feature 16002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767978 of field osm_id of feature 16003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767980 of field osm_id of feature 16004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767981 of field osm_id of feature 16005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767982 of field osm_id of feature 16006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767983 of field osm_id of feature 16007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767984 of field osm_id of feature 16008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767985 of field osm_id of feature 16009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767986 of field osm_id of feature 16010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767987 of field osm_id of feature 16011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767989 of field osm_id of feature 16012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767991 of field osm_id of feature 16013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767993 of field osm_id of feature 16014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173767997 of field osm_id of feature 16015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173768000 of field osm_id of feature 16016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173768001 of field osm_id of feature 16017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173768003 of field osm_id of feature 16018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173768005 of field osm_id of feature 16019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173768006 of field osm_id of feature 16020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779702 of field osm_id of feature 16021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779703 of field osm_id of feature 16022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779706 of field osm_id of feature 16023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779709 of field osm_id of feature 16024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779712 of field osm_id of feature 16025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779715 of field osm_id of feature 16026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779720 of field osm_id of feature 16027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779722 of field osm_id of feature 16028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779725 of field osm_id of feature 16029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779727 of field osm_id of feature 16030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779728 of field osm_id of feature 16031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779729 of field osm_id of feature 16032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779730 of field osm_id of feature 16033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779731 of field osm_id of feature 16034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779732 of field osm_id of feature 16035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779733 of field osm_id of feature 16036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779734 of field osm_id of feature 16037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779736 of field osm_id of feature 16038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779737 of field osm_id of feature 16039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779738 of field osm_id of feature 16040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779739 of field osm_id of feature 16041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779740 of field osm_id of feature 16042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779741 of field osm_id of feature 16043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779742 of field osm_id of feature 16044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779743 of field osm_id of feature 16045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779744 of field osm_id of feature 16046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779745 of field osm_id of feature 16047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779747 of field osm_id of feature 16048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779748 of field osm_id of feature 16049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779751 of field osm_id of feature 16050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779752 of field osm_id of feature 16051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779753 of field osm_id of feature 16052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779754 of field osm_id of feature 16053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779755 of field osm_id of feature 16054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173779756 of field osm_id of feature 16055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791973 of field osm_id of feature 16056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791974 of field osm_id of feature 16057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791975 of field osm_id of feature 16058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791976 of field osm_id of feature 16059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791977 of field osm_id of feature 16060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791979 of field osm_id of feature 16061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791980 of field osm_id of feature 16062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791982 of field osm_id of feature 16063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791983 of field osm_id of feature 16064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791984 of field osm_id of feature 16065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791985 of field osm_id of feature 16066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791987 of field osm_id of feature 16067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791988 of field osm_id of feature 16068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791989 of field osm_id of feature 16069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791990 of field osm_id of feature 16070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791991 of field osm_id of feature 16071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791992 of field osm_id of feature 16072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791994 of field osm_id of feature 16073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791995 of field osm_id of feature 16074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791997 of field osm_id of feature 16075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791998 of field osm_id of feature 16076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173791999 of field osm_id of feature 16077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792001 of field osm_id of feature 16078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792002 of field osm_id of feature 16079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792003 of field osm_id of feature 16080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792004 of field osm_id of feature 16081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792005 of field osm_id of feature 16082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792007 of field osm_id of feature 16083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792008 of field osm_id of feature 16084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173792010 of field osm_id of feature 16085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896144 of field osm_id of feature 16086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896145 of field osm_id of feature 16087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896146 of field osm_id of feature 16088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896147 of field osm_id of feature 16089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896149 of field osm_id of feature 16090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896153 of field osm_id of feature 16091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896155 of field osm_id of feature 16092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896156 of field osm_id of feature 16093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896157 of field osm_id of feature 16094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896159 of field osm_id of feature 16095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896163 of field osm_id of feature 16096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544883455 of field osm_id of feature 16097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896164 of field osm_id of feature 16098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544883456 of field osm_id of feature 16099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896166 of field osm_id of feature 16100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896168 of field osm_id of feature 16101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896171 of field osm_id of feature 16102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896173 of field osm_id of feature 16103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896175 of field osm_id of feature 16104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896177 of field osm_id of feature 16105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896179 of field osm_id of feature 16106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896181 of field osm_id of feature 16107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896183 of field osm_id of feature 16108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896185 of field osm_id of feature 16109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896187 of field osm_id of feature 16110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896188 of field osm_id of feature 16111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896190 of field osm_id of feature 16112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896191 of field osm_id of feature 16113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896193 of field osm_id of feature 16114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896195 of field osm_id of feature 16115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896195 of field osm_id of feature 16116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896198 of field osm_id of feature 16117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896199 of field osm_id of feature 16118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896200 of field osm_id of feature 16119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896202 of field osm_id of feature 16120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896205 of field osm_id of feature 16121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896207 of field osm_id of feature 16122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896208 of field osm_id of feature 16123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896210 of field osm_id of feature 16124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896212 of field osm_id of feature 16125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896214 of field osm_id of feature 16126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896216 of field osm_id of feature 16127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896217 of field osm_id of feature 16128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896219 of field osm_id of feature 16129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896221 of field osm_id of feature 16130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896223 of field osm_id of feature 16131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896223 of field osm_id of feature 16132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896225 of field osm_id of feature 16133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896227 of field osm_id of feature 16134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896229 of field osm_id of feature 16135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896233 of field osm_id of feature 16136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896234 of field osm_id of feature 16137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896236 of field osm_id of feature 16138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896238 of field osm_id of feature 16139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896240 of field osm_id of feature 16140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896242 of field osm_id of feature 16141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896244 of field osm_id of feature 16142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896245 of field osm_id of feature 16143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896250 of field osm_id of feature 16144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896252 of field osm_id of feature 16145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896253 of field osm_id of feature 16146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896255 of field osm_id of feature 16147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896257 of field osm_id of feature 16148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896257 of field osm_id of feature 16149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896259 of field osm_id of feature 16150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896261 of field osm_id of feature 16151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896262 of field osm_id of feature 16152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896263 of field osm_id of feature 16153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896270 of field osm_id of feature 16154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896272 of field osm_id of feature 16155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896274 of field osm_id of feature 16156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896276 of field osm_id of feature 16157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896278 of field osm_id of feature 16158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896283 of field osm_id of feature 16159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896284 of field osm_id of feature 16160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896286 of field osm_id of feature 16161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896289 of field osm_id of feature 16162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896292 of field osm_id of feature 16163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173896296 of field osm_id of feature 16164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173909446 of field osm_id of feature 16165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913043 of field osm_id of feature 16166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913046 of field osm_id of feature 16167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913048 of field osm_id of feature 16168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913052 of field osm_id of feature 16169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913055 of field osm_id of feature 16170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913056 of field osm_id of feature 16171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913057 of field osm_id of feature 16172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913061 of field osm_id of feature 16173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913065 of field osm_id of feature 16174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913066 of field osm_id of feature 16175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913069 of field osm_id of feature 16176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913071 of field osm_id of feature 16177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913074 of field osm_id of feature 16178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173913076 of field osm_id of feature 16179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173914632 of field osm_id of feature 16180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173914639 of field osm_id of feature 16181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954636 of field osm_id of feature 16182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954636 of field osm_id of feature 16183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954638 of field osm_id of feature 16184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954639 of field osm_id of feature 16185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954640 of field osm_id of feature 16186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954640 of field osm_id of feature 16187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954641 of field osm_id of feature 16188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954643 of field osm_id of feature 16189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954644 of field osm_id of feature 16190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954645 of field osm_id of feature 16191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954647 of field osm_id of feature 16192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954647 of field osm_id of feature 16193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954648 of field osm_id of feature 16194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954649 of field osm_id of feature 16195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954650 of field osm_id of feature 16196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173954651 of field osm_id of feature 16197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960123 of field osm_id of feature 16198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960124 of field osm_id of feature 16199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960125 of field osm_id of feature 16200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960126 of field osm_id of feature 16201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960127 of field osm_id of feature 16202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960128 of field osm_id of feature 16203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173960962 of field osm_id of feature 16204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173961727 of field osm_id of feature 16205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173961730 of field osm_id of feature 16206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173961732 of field osm_id of feature 16207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173961732 of field osm_id of feature 16208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173963235 of field osm_id of feature 16209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173963239 of field osm_id of feature 16210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173963241 of field osm_id of feature 16211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173963243 of field osm_id of feature 16212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 173963244 of field osm_id of feature 16213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023706 of field osm_id of feature 16214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023707 of field osm_id of feature 16215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023708 of field osm_id of feature 16216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023709 of field osm_id of feature 16217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023711 of field osm_id of feature 16218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023713 of field osm_id of feature 16219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174023717 of field osm_id of feature 16220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035870 of field osm_id of feature 16221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035871 of field osm_id of feature 16222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035873 of field osm_id of feature 16223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035874 of field osm_id of feature 16224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035875 of field osm_id of feature 16225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035876 of field osm_id of feature 16226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035877 of field osm_id of feature 16227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035878 of field osm_id of feature 16228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035880 of field osm_id of feature 16229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035881 of field osm_id of feature 16230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035882 of field osm_id of feature 16231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035888 of field osm_id of feature 16232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035889 of field osm_id of feature 16233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035892 of field osm_id of feature 16234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035893 of field osm_id of feature 16235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035894 of field osm_id of feature 16236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035895 of field osm_id of feature 16237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035898 of field osm_id of feature 16238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035899 of field osm_id of feature 16239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035901 of field osm_id of feature 16240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035902 of field osm_id of feature 16241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035905 of field osm_id of feature 16242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035908 of field osm_id of feature 16243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035909 of field osm_id of feature 16244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035911 of field osm_id of feature 16245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035912 of field osm_id of feature 16246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174035934 of field osm_id of feature 16247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041986 of field osm_id of feature 16248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041987 of field osm_id of feature 16249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041988 of field osm_id of feature 16250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041989 of field osm_id of feature 16251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544904015 of field osm_id of feature 16252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041990 of field osm_id of feature 16253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041991 of field osm_id of feature 16254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544904017 of field osm_id of feature 16255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041992 of field osm_id of feature 16256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544904018 of field osm_id of feature 16257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174041993 of field osm_id of feature 16258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049653 of field osm_id of feature 16259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049656 of field osm_id of feature 16260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049661 of field osm_id of feature 16261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049665 of field osm_id of feature 16262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049669 of field osm_id of feature 16263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049674 of field osm_id of feature 16264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049686 of field osm_id of feature 16265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049690 of field osm_id of feature 16266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049692 of field osm_id of feature 16267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049693 of field osm_id of feature 16268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049695 of field osm_id of feature 16269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049703 of field osm_id of feature 16270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049709 of field osm_id of feature 16271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049713 of field osm_id of feature 16272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049717 of field osm_id of feature 16273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049722 of field osm_id of feature 16274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049724 of field osm_id of feature 16275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049729 of field osm_id of feature 16276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544908877 of field osm_id of feature 16277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049735 of field osm_id of feature 16278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544908878 of field osm_id of feature 16279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049738 of field osm_id of feature 16280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544908879 of field osm_id of feature 16281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049740 of field osm_id of feature 16282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544909677 of field osm_id of feature 16283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174049742 of field osm_id of feature 16284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544909678 of field osm_id of feature 16285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262747 of field osm_id of feature 16286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 544909679 of field osm_id of feature 16287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262748 of field osm_id of feature 16288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262750 of field osm_id of feature 16289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262751 of field osm_id of feature 16290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262752 of field osm_id of feature 16291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262753 of field osm_id of feature 16292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262755 of field osm_id of feature 16293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262756 of field osm_id of feature 16294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262756 of field osm_id of feature 16295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262757 of field osm_id of feature 16296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262758 of field osm_id of feature 16297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262763 of field osm_id of feature 16298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262765 of field osm_id of feature 16299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262766 of field osm_id of feature 16300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262766 of field osm_id of feature 16301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262767 of field osm_id of feature 16302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262769 of field osm_id of feature 16303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262771 of field osm_id of feature 16304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262772 of field osm_id of feature 16305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262794 of field osm_id of feature 16306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262796 of field osm_id of feature 16307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262798 of field osm_id of feature 16308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262800 of field osm_id of feature 16309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262801 of field osm_id of feature 16310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262802 of field osm_id of feature 16311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262803 of field osm_id of feature 16312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262805 of field osm_id of feature 16313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262807 of field osm_id of feature 16314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262808 of field osm_id of feature 16315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262809 of field osm_id of feature 16316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262810 of field osm_id of feature 16317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262812 of field osm_id of feature 16318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262814 of field osm_id of feature 16319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262816 of field osm_id of feature 16320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262818 of field osm_id of feature 16321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262820 of field osm_id of feature 16322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262821 of field osm_id of feature 16323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262823 of field osm_id of feature 16324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262824 of field osm_id of feature 16325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262827 of field osm_id of feature 16326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262831 of field osm_id of feature 16327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262832 of field osm_id of feature 16328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545041888 of field osm_id of feature 16329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262833 of field osm_id of feature 16330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262833 of field osm_id of feature 16331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174262834 of field osm_id of feature 16332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281597 of field osm_id of feature 16333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281599 of field osm_id of feature 16334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281600 of field osm_id of feature 16335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281601 of field osm_id of feature 16336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281602 of field osm_id of feature 16337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281603 of field osm_id of feature 16338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281604 of field osm_id of feature 16339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281606 of field osm_id of feature 16340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281608 of field osm_id of feature 16341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281610 of field osm_id of feature 16342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281610 of field osm_id of feature 16343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281611 of field osm_id of feature 16344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281617 of field osm_id of feature 16345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281620 of field osm_id of feature 16346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281621 of field osm_id of feature 16347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281622 of field osm_id of feature 16348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281623 of field osm_id of feature 16349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281624 of field osm_id of feature 16350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281625 of field osm_id of feature 16351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281626 of field osm_id of feature 16352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281627 of field osm_id of feature 16353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281628 of field osm_id of feature 16354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281629 of field osm_id of feature 16355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281630 of field osm_id of feature 16356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281631 of field osm_id of feature 16357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281632 of field osm_id of feature 16358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281633 of field osm_id of feature 16359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281634 of field osm_id of feature 16360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281635 of field osm_id of feature 16361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281635 of field osm_id of feature 16362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545054994 of field osm_id of feature 16363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281636 of field osm_id of feature 16364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545054995 of field osm_id of feature 16365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281637 of field osm_id of feature 16366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281638 of field osm_id of feature 16367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281642 of field osm_id of feature 16368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281643 of field osm_id of feature 16369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281645 of field osm_id of feature 16370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281650 of field osm_id of feature 16371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281651 of field osm_id of feature 16372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281652 of field osm_id of feature 16373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281654 of field osm_id of feature 16374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057014 of field osm_id of feature 16375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281657 of field osm_id of feature 16376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057015 of field osm_id of feature 16377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281658 of field osm_id of feature 16378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057016 of field osm_id of feature 16379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281659 of field osm_id of feature 16380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057017 of field osm_id of feature 16381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281660 of field osm_id of feature 16382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057018 of field osm_id of feature 16383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281661 of field osm_id of feature 16384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057019 of field osm_id of feature 16385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057020 of field osm_id of feature 16386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281685 of field osm_id of feature 16387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057021 of field osm_id of feature 16388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281686 of field osm_id of feature 16389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057022 of field osm_id of feature 16390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057023 of field osm_id of feature 16391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281689 of field osm_id of feature 16392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057024 of field osm_id of feature 16393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174281691 of field osm_id of feature 16394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545057025 of field osm_id of feature 16395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286641 of field osm_id of feature 16396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286643 of field osm_id of feature 16397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286645 of field osm_id of feature 16398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286646 of field osm_id of feature 16399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286647 of field osm_id of feature 16400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059769 of field osm_id of feature 16401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286648 of field osm_id of feature 16402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059770 of field osm_id of feature 16403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286649 of field osm_id of feature 16404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059771 of field osm_id of feature 16405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286650 of field osm_id of feature 16406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059772 of field osm_id of feature 16407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286651 of field osm_id of feature 16408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059773 of field osm_id of feature 16409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286652 of field osm_id of feature 16410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059774 of field osm_id of feature 16411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286653 of field osm_id of feature 16412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059775 of field osm_id of feature 16413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286654 of field osm_id of feature 16414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059776 of field osm_id of feature 16415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286655 of field osm_id of feature 16416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059777 of field osm_id of feature 16417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286656 of field osm_id of feature 16418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059778 of field osm_id of feature 16419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286657 of field osm_id of feature 16420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059779 of field osm_id of feature 16421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286658 of field osm_id of feature 16422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545059780 of field osm_id of feature 16423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174286659 of field osm_id of feature 16424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545061229 of field osm_id of feature 16425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545061230 of field osm_id of feature 16426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545077460 of field osm_id of feature 16427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545077460 of field osm_id of feature 16428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545077461 of field osm_id of feature 16429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545077461 of field osm_id of feature 16430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174289932 of field osm_id of feature 16431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174289933 of field osm_id of feature 16432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402277 of field osm_id of feature 16433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402278 of field osm_id of feature 16434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402279 of field osm_id of feature 16435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402280 of field osm_id of feature 16436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402281 of field osm_id of feature 16437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402282 of field osm_id of feature 16438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402283 of field osm_id of feature 16439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402284 of field osm_id of feature 16440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545080482 of field osm_id of feature 16441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402285 of field osm_id of feature 16442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402285 of field osm_id of feature 16443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545082669 of field osm_id of feature 16444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402286 of field osm_id of feature 16445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402286 of field osm_id of feature 16446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402290 of field osm_id of feature 16447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402294 of field osm_id of feature 16448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402296 of field osm_id of feature 16449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402296 of field osm_id of feature 16450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402298 of field osm_id of feature 16451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174402302 of field osm_id of feature 16452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174407830 of field osm_id of feature 16453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174407831 of field osm_id of feature 16454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174407831 of field osm_id of feature 16455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174407832 of field osm_id of feature 16456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545086073 of field osm_id of feature 16457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174411709 of field osm_id of feature 16458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545086074 of field osm_id of feature 16459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174411710 of field osm_id of feature 16460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174411711 of field osm_id of feature 16461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174411712 of field osm_id of feature 16462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545089749 of field osm_id of feature 16463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174418036 of field osm_id of feature 16464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545089752 of field osm_id of feature 16465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545089754 of field osm_id of feature 16466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552464 of field osm_id of feature 16467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552465 of field osm_id of feature 16468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545090904 of field osm_id of feature 16469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552467 of field osm_id of feature 16470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545091897 of field osm_id of feature 16471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552469 of field osm_id of feature 16472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552469 of field osm_id of feature 16473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545091898 of field osm_id of feature 16474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552471 of field osm_id of feature 16475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545091899 of field osm_id of feature 16476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552472 of field osm_id of feature 16477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552473 of field osm_id of feature 16478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545095605 of field osm_id of feature 16479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552474 of field osm_id of feature 16480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545095956 of field osm_id of feature 16481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552478 of field osm_id of feature 16482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552479 of field osm_id of feature 16483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552481 of field osm_id of feature 16484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552484 of field osm_id of feature 16485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552486 of field osm_id of feature 16486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552487 of field osm_id of feature 16487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552487 of field osm_id of feature 16488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552489 of field osm_id of feature 16489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552490 of field osm_id of feature 16490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552492 of field osm_id of feature 16491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552494 of field osm_id of feature 16492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552495 of field osm_id of feature 16493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552496 of field osm_id of feature 16494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552496 of field osm_id of feature 16495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552497 of field osm_id of feature 16496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552500 of field osm_id of feature 16497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552502 of field osm_id of feature 16498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552503 of field osm_id of feature 16499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552504 of field osm_id of feature 16500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552505 of field osm_id of feature 16501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552508 of field osm_id of feature 16502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552510 of field osm_id of feature 16503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552511 of field osm_id of feature 16504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552512 of field osm_id of feature 16505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552513 of field osm_id of feature 16506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552513 of field osm_id of feature 16507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552515 of field osm_id of feature 16508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552517 of field osm_id of feature 16509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552518 of field osm_id of feature 16510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552520 of field osm_id of feature 16511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174552522 of field osm_id of feature 16512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174554431 of field osm_id of feature 16513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555658 of field osm_id of feature 16514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555659 of field osm_id of feature 16515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555660 of field osm_id of feature 16516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555661 of field osm_id of feature 16517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555662 of field osm_id of feature 16518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174555663 of field osm_id of feature 16519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556249 of field osm_id of feature 16520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556250 of field osm_id of feature 16521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556551 of field osm_id of feature 16522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556552 of field osm_id of feature 16523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556552 of field osm_id of feature 16524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556553 of field osm_id of feature 16525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556554 of field osm_id of feature 16526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174556555 of field osm_id of feature 16527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174632305 of field osm_id of feature 16528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174632306 of field osm_id of feature 16529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174637872 of field osm_id of feature 16530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174644120 of field osm_id of feature 16531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174644122 of field osm_id of feature 16532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174688494 of field osm_id of feature 16533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174688495 of field osm_id of feature 16534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174717951 of field osm_id of feature 16535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174717952 of field osm_id of feature 16536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174717953 of field osm_id of feature 16537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174717954 of field osm_id of feature 16538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174717960 of field osm_id of feature 16539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103182 of field osm_id of feature 16540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103183 of field osm_id of feature 16541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103184 of field osm_id of feature 16542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103185 of field osm_id of feature 16543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103186 of field osm_id of feature 16544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103187 of field osm_id of feature 16545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103189 of field osm_id of feature 16546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103190 of field osm_id of feature 16547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103191 of field osm_id of feature 16548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103192 of field osm_id of feature 16549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103194 of field osm_id of feature 16550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103197 of field osm_id of feature 16551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103200 of field osm_id of feature 16552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545103203 of field osm_id of feature 16553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174718105 of field osm_id of feature 16554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174718114 of field osm_id of feature 16555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765761 of field osm_id of feature 16556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765762 of field osm_id of feature 16557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765763 of field osm_id of feature 16558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545116039 of field osm_id of feature 16559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765765 of field osm_id of feature 16560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765767 of field osm_id of feature 16561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765768 of field osm_id of feature 16562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765769 of field osm_id of feature 16563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765772 of field osm_id of feature 16564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765773 of field osm_id of feature 16565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765774 of field osm_id of feature 16566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765775 of field osm_id of feature 16567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765777 of field osm_id of feature 16568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545119964 of field osm_id of feature 16569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765778 of field osm_id of feature 16570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545119965 of field osm_id of feature 16571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765779 of field osm_id of feature 16572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545119966 of field osm_id of feature 16573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765780 of field osm_id of feature 16574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765781 of field osm_id of feature 16575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765783 of field osm_id of feature 16576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765784 of field osm_id of feature 16577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765785 of field osm_id of feature 16578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765785 of field osm_id of feature 16579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765788 of field osm_id of feature 16580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765789 of field osm_id of feature 16581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765790 of field osm_id of feature 16582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765791 of field osm_id of feature 16583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765792 of field osm_id of feature 16584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765793 of field osm_id of feature 16585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765794 of field osm_id of feature 16586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765798 of field osm_id of feature 16587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765799 of field osm_id of feature 16588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765800 of field osm_id of feature 16589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765803 of field osm_id of feature 16590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765806 of field osm_id of feature 16591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765809 of field osm_id of feature 16592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765811 of field osm_id of feature 16593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765814 of field osm_id of feature 16594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765816 of field osm_id of feature 16595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765819 of field osm_id of feature 16596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765822 of field osm_id of feature 16597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765824 of field osm_id of feature 16598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765826 of field osm_id of feature 16599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765828 of field osm_id of feature 16600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765831 of field osm_id of feature 16601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765834 of field osm_id of feature 16602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765835 of field osm_id of feature 16603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765836 of field osm_id of feature 16604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765838 of field osm_id of feature 16605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765839 of field osm_id of feature 16606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765842 of field osm_id of feature 16607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765844 of field osm_id of feature 16608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765845 of field osm_id of feature 16609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765846 of field osm_id of feature 16610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765849 of field osm_id of feature 16611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765856 of field osm_id of feature 16612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174765857 of field osm_id of feature 16613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174771671 of field osm_id of feature 16614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174771677 of field osm_id of feature 16615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174771682 of field osm_id of feature 16616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174778941 of field osm_id of feature 16617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174778942 of field osm_id of feature 16618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886143 of field osm_id of feature 16619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886144 of field osm_id of feature 16620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886145 of field osm_id of feature 16621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886146 of field osm_id of feature 16622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886147 of field osm_id of feature 16623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886148 of field osm_id of feature 16624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886149 of field osm_id of feature 16625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886150 of field osm_id of feature 16626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886152 of field osm_id of feature 16627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886153 of field osm_id of feature 16628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886154 of field osm_id of feature 16629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886156 of field osm_id of feature 16630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886158 of field osm_id of feature 16631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886159 of field osm_id of feature 16632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886160 of field osm_id of feature 16633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886161 of field osm_id of feature 16634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886162 of field osm_id of feature 16635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886163 of field osm_id of feature 16636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886164 of field osm_id of feature 16637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886165 of field osm_id of feature 16638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886167 of field osm_id of feature 16639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886170 of field osm_id of feature 16640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886174 of field osm_id of feature 16641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886175 of field osm_id of feature 16642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886176 of field osm_id of feature 16643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886177 of field osm_id of feature 16644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886179 of field osm_id of feature 16645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886180 of field osm_id of feature 16646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886182 of field osm_id of feature 16647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886183 of field osm_id of feature 16648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886184 of field osm_id of feature 16649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886187 of field osm_id of feature 16650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886194 of field osm_id of feature 16651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886195 of field osm_id of feature 16652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886197 of field osm_id of feature 16653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886198 of field osm_id of feature 16654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886199 of field osm_id of feature 16655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886200 of field osm_id of feature 16656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886201 of field osm_id of feature 16657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886202 of field osm_id of feature 16658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886203 of field osm_id of feature 16659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886204 of field osm_id of feature 16660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886205 of field osm_id of feature 16661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886206 of field osm_id of feature 16662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886207 of field osm_id of feature 16663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886208 of field osm_id of feature 16664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886209 of field osm_id of feature 16665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886210 of field osm_id of feature 16666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886211 of field osm_id of feature 16667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886212 of field osm_id of feature 16668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886213 of field osm_id of feature 16669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886214 of field osm_id of feature 16670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886215 of field osm_id of feature 16671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886216 of field osm_id of feature 16672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886217 of field osm_id of feature 16673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886221 of field osm_id of feature 16674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886222 of field osm_id of feature 16675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886223 of field osm_id of feature 16676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886224 of field osm_id of feature 16677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886238 of field osm_id of feature 16678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886239 of field osm_id of feature 16679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545123963 of field osm_id of feature 16680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545123964 of field osm_id of feature 16681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545123965 of field osm_id of feature 16682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545123966 of field osm_id of feature 16683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545123966 of field osm_id of feature 16684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886256 of field osm_id of feature 16685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886273 of field osm_id of feature 16686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886275 of field osm_id of feature 16687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886290 of field osm_id of feature 16688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545127984 of field osm_id of feature 16689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545127985 of field osm_id of feature 16690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545127986 of field osm_id of feature 16691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545127987 of field osm_id of feature 16692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545127988 of field osm_id of feature 16693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886376 of field osm_id of feature 16694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886391 of field osm_id of feature 16695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886399 of field osm_id of feature 16696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886406 of field osm_id of feature 16697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886415 of field osm_id of feature 16698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174886416 of field osm_id of feature 16699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 174890435 of field osm_id of feature 16700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010893 of field osm_id of feature 16701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010894 of field osm_id of feature 16702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010895 of field osm_id of feature 16703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010896 of field osm_id of feature 16704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010898 of field osm_id of feature 16705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010899 of field osm_id of feature 16706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010900 of field osm_id of feature 16707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010901 of field osm_id of feature 16708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010902 of field osm_id of feature 16709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010905 of field osm_id of feature 16710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010906 of field osm_id of feature 16711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010915 of field osm_id of feature 16712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175010918 of field osm_id of feature 16713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014490 of field osm_id of feature 16714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014491 of field osm_id of feature 16715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014492 of field osm_id of feature 16716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014493 of field osm_id of feature 16717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014494 of field osm_id of feature 16718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014495 of field osm_id of feature 16719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014496 of field osm_id of feature 16720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014497 of field osm_id of feature 16721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014498 of field osm_id of feature 16722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014499 of field osm_id of feature 16723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014500 of field osm_id of feature 16724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014501 of field osm_id of feature 16725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175014502 of field osm_id of feature 16726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015659 of field osm_id of feature 16727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015660 of field osm_id of feature 16728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015661 of field osm_id of feature 16729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015662 of field osm_id of feature 16730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015663 of field osm_id of feature 16731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015665 of field osm_id of feature 16732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015666 of field osm_id of feature 16733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015667 of field osm_id of feature 16734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015668 of field osm_id of feature 16735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015670 of field osm_id of feature 16736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015670 of field osm_id of feature 16737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015675 of field osm_id of feature 16738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015680 of field osm_id of feature 16739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015683 of field osm_id of feature 16740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015685 of field osm_id of feature 16741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175015686 of field osm_id of feature 16742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020543 of field osm_id of feature 16743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020546 of field osm_id of feature 16744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020552 of field osm_id of feature 16745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020553 of field osm_id of feature 16746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020554 of field osm_id of feature 16747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020556 of field osm_id of feature 16748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020558 of field osm_id of feature 16749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020564 of field osm_id of feature 16750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020565 of field osm_id of feature 16751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020572 of field osm_id of feature 16752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020575 of field osm_id of feature 16753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020577 of field osm_id of feature 16754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020577 of field osm_id of feature 16755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020580 of field osm_id of feature 16756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020590 of field osm_id of feature 16757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175020592 of field osm_id of feature 16758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175028485 of field osm_id of feature 16759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175028490 of field osm_id of feature 16760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052979 of field osm_id of feature 16761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052980 of field osm_id of feature 16762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052981 of field osm_id of feature 16763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052982 of field osm_id of feature 16764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052983 of field osm_id of feature 16765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052984 of field osm_id of feature 16766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052985 of field osm_id of feature 16767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052986 of field osm_id of feature 16768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052987 of field osm_id of feature 16769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052988 of field osm_id of feature 16770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052989 of field osm_id of feature 16771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052990 of field osm_id of feature 16772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052991 of field osm_id of feature 16773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052992 of field osm_id of feature 16774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052995 of field osm_id of feature 16775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052997 of field osm_id of feature 16776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052998 of field osm_id of feature 16777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175052999 of field osm_id of feature 16778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175097814 of field osm_id of feature 16779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175097815 of field osm_id of feature 16780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175139004 of field osm_id of feature 16781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175139010 of field osm_id of feature 16782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175257999 of field osm_id of feature 16783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175265500 of field osm_id of feature 16784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175381364 of field osm_id of feature 16785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175395518 of field osm_id of feature 16786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175395520 of field osm_id of feature 16787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175395602 of field osm_id of feature 16788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175417798 of field osm_id of feature 16789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540414 of field osm_id of feature 16790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540474 of field osm_id of feature 16791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540475 of field osm_id of feature 16792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540476 of field osm_id of feature 16793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540477 of field osm_id of feature 16794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540478 of field osm_id of feature 16795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540479 of field osm_id of feature 16796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540480 of field osm_id of feature 16797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540481 of field osm_id of feature 16798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540482 of field osm_id of feature 16799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540483 of field osm_id of feature 16800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540485 of field osm_id of feature 16801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540486 of field osm_id of feature 16802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540487 of field osm_id of feature 16803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540488 of field osm_id of feature 16804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540488 of field osm_id of feature 16805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540490 of field osm_id of feature 16806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540491 of field osm_id of feature 16807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540491 of field osm_id of feature 16808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540493 of field osm_id of feature 16809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545311627 of field osm_id of feature 16810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540494 of field osm_id of feature 16811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545312504 of field osm_id of feature 16812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540495 of field osm_id of feature 16813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545312505 of field osm_id of feature 16814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540496 of field osm_id of feature 16815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545312506 of field osm_id of feature 16816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540497 of field osm_id of feature 16817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313014 of field osm_id of feature 16818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540499 of field osm_id of feature 16819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313015 of field osm_id of feature 16820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540500 of field osm_id of feature 16821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313016 of field osm_id of feature 16822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313017 of field osm_id of feature 16823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313018 of field osm_id of feature 16824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540524 of field osm_id of feature 16825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313869 of field osm_id of feature 16826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175540525 of field osm_id of feature 16827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545313870 of field osm_id of feature 16828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175542561 of field osm_id of feature 16829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545315243 of field osm_id of feature 16830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175545849 of field osm_id of feature 16831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545315244 of field osm_id of feature 16832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175545980 of field osm_id of feature 16833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545315245 of field osm_id of feature 16834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175546235 of field osm_id of feature 16835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545315246 of field osm_id of feature 16836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175546652 of field osm_id of feature 16837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545315247 of field osm_id of feature 16838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175546726 of field osm_id of feature 16839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175546727 of field osm_id of feature 16840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175547803 of field osm_id of feature 16841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175828815 of field osm_id of feature 16842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840026 of field osm_id of feature 16843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840028 of field osm_id of feature 16844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840029 of field osm_id of feature 16845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840030 of field osm_id of feature 16846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840031 of field osm_id of feature 16847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840032 of field osm_id of feature 16848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840033 of field osm_id of feature 16849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840034 of field osm_id of feature 16850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840035 of field osm_id of feature 16851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840036 of field osm_id of feature 16852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840036 of field osm_id of feature 16853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840037 of field osm_id of feature 16854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840038 of field osm_id of feature 16855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840039 of field osm_id of feature 16856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840040 of field osm_id of feature 16857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840044 of field osm_id of feature 16858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840045 of field osm_id of feature 16859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840046 of field osm_id of feature 16860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840047 of field osm_id of feature 16861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840048 of field osm_id of feature 16862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840049 of field osm_id of feature 16863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840050 of field osm_id of feature 16864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840051 of field osm_id of feature 16865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321520 of field osm_id of feature 16866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840052 of field osm_id of feature 16867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321521 of field osm_id of feature 16868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840053 of field osm_id of feature 16869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321522 of field osm_id of feature 16870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840054 of field osm_id of feature 16871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321523 of field osm_id of feature 16872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840055 of field osm_id of feature 16873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321524 of field osm_id of feature 16874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840056 of field osm_id of feature 16875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321525 of field osm_id of feature 16876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840057 of field osm_id of feature 16877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321526 of field osm_id of feature 16878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840058 of field osm_id of feature 16879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545321527 of field osm_id of feature 16880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840059 of field osm_id of feature 16881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840060 of field osm_id of feature 16882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840061 of field osm_id of feature 16883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840061 of field osm_id of feature 16884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840062 of field osm_id of feature 16885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840063 of field osm_id of feature 16886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840063 of field osm_id of feature 16887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840065 of field osm_id of feature 16888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840066 of field osm_id of feature 16889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840067 of field osm_id of feature 16890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840068 of field osm_id of feature 16891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840069 of field osm_id of feature 16892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840070 of field osm_id of feature 16893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840071 of field osm_id of feature 16894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840072 of field osm_id of feature 16895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840073 of field osm_id of feature 16896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840073 of field osm_id of feature 16897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840074 of field osm_id of feature 16898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840075 of field osm_id of feature 16899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840076 of field osm_id of feature 16900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840076 of field osm_id of feature 16901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840077 of field osm_id of feature 16902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840077 of field osm_id of feature 16903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840078 of field osm_id of feature 16904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840079 of field osm_id of feature 16905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840080 of field osm_id of feature 16906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840081 of field osm_id of feature 16907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840082 of field osm_id of feature 16908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840083 of field osm_id of feature 16909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840084 of field osm_id of feature 16910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840085 of field osm_id of feature 16911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840086 of field osm_id of feature 16912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840087 of field osm_id of feature 16913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840088 of field osm_id of feature 16914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840089 of field osm_id of feature 16915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840091 of field osm_id of feature 16916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840092 of field osm_id of feature 16917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840094 of field osm_id of feature 16918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840096 of field osm_id of feature 16919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840209 of field osm_id of feature 16920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840210 of field osm_id of feature 16921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175840211 of field osm_id of feature 16922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175841898 of field osm_id of feature 16923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175841899 of field osm_id of feature 16924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175841900 of field osm_id of feature 16925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845924 of field osm_id of feature 16926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845925 of field osm_id of feature 16927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845926 of field osm_id of feature 16928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845927 of field osm_id of feature 16929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845928 of field osm_id of feature 16930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845929 of field osm_id of feature 16931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845930 of field osm_id of feature 16932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845931 of field osm_id of feature 16933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845932 of field osm_id of feature 16934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845933 of field osm_id of feature 16935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845934 of field osm_id of feature 16936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845935 of field osm_id of feature 16937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845936 of field osm_id of feature 16938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845937 of field osm_id of feature 16939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845938 of field osm_id of feature 16940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845939 of field osm_id of feature 16941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845940 of field osm_id of feature 16942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845941 of field osm_id of feature 16943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845942 of field osm_id of feature 16944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845943 of field osm_id of feature 16945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175845944 of field osm_id of feature 16946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847332 of field osm_id of feature 16947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847333 of field osm_id of feature 16948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847334 of field osm_id of feature 16949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847335 of field osm_id of feature 16950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847336 of field osm_id of feature 16951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847337 of field osm_id of feature 16952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175847338 of field osm_id of feature 16953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175856747 of field osm_id of feature 16954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175856748 of field osm_id of feature 16955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878984 of field osm_id of feature 16956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878986 of field osm_id of feature 16957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878987 of field osm_id of feature 16958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878988 of field osm_id of feature 16959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878989 of field osm_id of feature 16960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878990 of field osm_id of feature 16961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878991 of field osm_id of feature 16962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878992 of field osm_id of feature 16963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878993 of field osm_id of feature 16964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878994 of field osm_id of feature 16965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878995 of field osm_id of feature 16966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878996 of field osm_id of feature 16967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878997 of field osm_id of feature 16968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175878999 of field osm_id of feature 16969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879000 of field osm_id of feature 16970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879001 of field osm_id of feature 16971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879002 of field osm_id of feature 16972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879005 of field osm_id of feature 16973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879007 of field osm_id of feature 16974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879009 of field osm_id of feature 16975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879012 of field osm_id of feature 16976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879014 of field osm_id of feature 16977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879015 of field osm_id of feature 16978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879016 of field osm_id of feature 16979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879017 of field osm_id of feature 16980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175879018 of field osm_id of feature 16981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175880766 of field osm_id of feature 16982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175929440 of field osm_id of feature 16983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175957564 of field osm_id of feature 16984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545326127 of field osm_id of feature 16985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545326128 of field osm_id of feature 16986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959373 of field osm_id of feature 16987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959374 of field osm_id of feature 16988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959375 of field osm_id of feature 16989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959376 of field osm_id of feature 16990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959377 of field osm_id of feature 16991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959378 of field osm_id of feature 16992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959379 of field osm_id of feature 16993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959380 of field osm_id of feature 16994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959381 of field osm_id of feature 16995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959382 of field osm_id of feature 16996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959383 of field osm_id of feature 16997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959383 of field osm_id of feature 16998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959383 of field osm_id of feature 16999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959383 of field osm_id of feature 17000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959384 of field osm_id of feature 17001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959385 of field osm_id of feature 17002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959386 of field osm_id of feature 17003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959387 of field osm_id of feature 17004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959388 of field osm_id of feature 17005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959389 of field osm_id of feature 17006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959390 of field osm_id of feature 17007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959392 of field osm_id of feature 17008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959393 of field osm_id of feature 17009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959394 of field osm_id of feature 17010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959395 of field osm_id of feature 17011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959397 of field osm_id of feature 17012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959398 of field osm_id of feature 17013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959399 of field osm_id of feature 17014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959400 of field osm_id of feature 17015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959401 of field osm_id of feature 17016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959402 of field osm_id of feature 17017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959403 of field osm_id of feature 17018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959404 of field osm_id of feature 17019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959405 of field osm_id of feature 17020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959406 of field osm_id of feature 17021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959407 of field osm_id of feature 17022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959408 of field osm_id of feature 17023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959409 of field osm_id of feature 17024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959410 of field osm_id of feature 17025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959411 of field osm_id of feature 17026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331180 of field osm_id of feature 17027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959412 of field osm_id of feature 17028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331182 of field osm_id of feature 17029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959413 of field osm_id of feature 17030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331185 of field osm_id of feature 17031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959414 of field osm_id of feature 17032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331188 of field osm_id of feature 17033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959415 of field osm_id of feature 17034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331191 of field osm_id of feature 17035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959418 of field osm_id of feature 17036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331192 of field osm_id of feature 17037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959421 of field osm_id of feature 17038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331193 of field osm_id of feature 17039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959422 of field osm_id of feature 17040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331194 of field osm_id of feature 17041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959424 of field osm_id of feature 17042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545331695 of field osm_id of feature 17043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959425 of field osm_id of feature 17044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959428 of field osm_id of feature 17045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959429 of field osm_id of feature 17046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959430 of field osm_id of feature 17047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959431 of field osm_id of feature 17048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959432 of field osm_id of feature 17049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959433 of field osm_id of feature 17050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959434 of field osm_id of feature 17051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959435 of field osm_id of feature 17052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959436 of field osm_id of feature 17053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959437 of field osm_id of feature 17054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959438 of field osm_id of feature 17055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959439 of field osm_id of feature 17056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959440 of field osm_id of feature 17057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959441 of field osm_id of feature 17058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959443 of field osm_id of feature 17059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959444 of field osm_id of feature 17060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959445 of field osm_id of feature 17061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959446 of field osm_id of feature 17062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959447 of field osm_id of feature 17063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959448 of field osm_id of feature 17064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959450 of field osm_id of feature 17065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959451 of field osm_id of feature 17066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959452 of field osm_id of feature 17067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959453 of field osm_id of feature 17068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959454 of field osm_id of feature 17069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959455 of field osm_id of feature 17070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959456 of field osm_id of feature 17071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959457 of field osm_id of feature 17072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959458 of field osm_id of feature 17073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959459 of field osm_id of feature 17074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959460 of field osm_id of feature 17075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959466 of field osm_id of feature 17076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959467 of field osm_id of feature 17077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959470 of field osm_id of feature 17078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959472 of field osm_id of feature 17079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959473 of field osm_id of feature 17080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959474 of field osm_id of feature 17081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959475 of field osm_id of feature 17082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959476 of field osm_id of feature 17083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959478 of field osm_id of feature 17084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959479 of field osm_id of feature 17085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959480 of field osm_id of feature 17086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959481 of field osm_id of feature 17087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959482 of field osm_id of feature 17088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959483 of field osm_id of feature 17089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959484 of field osm_id of feature 17090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959485 of field osm_id of feature 17091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959486 of field osm_id of feature 17092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959487 of field osm_id of feature 17093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959488 of field osm_id of feature 17094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959489 of field osm_id of feature 17095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959490 of field osm_id of feature 17096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959491 of field osm_id of feature 17097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959492 of field osm_id of feature 17098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959493 of field osm_id of feature 17099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959494 of field osm_id of feature 17100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959495 of field osm_id of feature 17101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959499 of field osm_id of feature 17102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959500 of field osm_id of feature 17103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959501 of field osm_id of feature 17104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959502 of field osm_id of feature 17105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959503 of field osm_id of feature 17106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959504 of field osm_id of feature 17107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959505 of field osm_id of feature 17108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959506 of field osm_id of feature 17109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959507 of field osm_id of feature 17110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959508 of field osm_id of feature 17111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959509 of field osm_id of feature 17112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959510 of field osm_id of feature 17113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959512 of field osm_id of feature 17114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959513 of field osm_id of feature 17115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959514 of field osm_id of feature 17116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959515 of field osm_id of feature 17117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959516 of field osm_id of feature 17118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959517 of field osm_id of feature 17119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959518 of field osm_id of feature 17120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959520 of field osm_id of feature 17121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959521 of field osm_id of feature 17122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959522 of field osm_id of feature 17123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959523 of field osm_id of feature 17124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959524 of field osm_id of feature 17125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959525 of field osm_id of feature 17126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959526 of field osm_id of feature 17127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959527 of field osm_id of feature 17128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959528 of field osm_id of feature 17129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959529 of field osm_id of feature 17130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959530 of field osm_id of feature 17131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959531 of field osm_id of feature 17132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959532 of field osm_id of feature 17133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959533 of field osm_id of feature 17134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959534 of field osm_id of feature 17135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959535 of field osm_id of feature 17136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959536 of field osm_id of feature 17137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959537 of field osm_id of feature 17138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959538 of field osm_id of feature 17139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959539 of field osm_id of feature 17140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959540 of field osm_id of feature 17141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959541 of field osm_id of feature 17142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959543 of field osm_id of feature 17143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959545 of field osm_id of feature 17144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959546 of field osm_id of feature 17145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959547 of field osm_id of feature 17146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959548 of field osm_id of feature 17147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959549 of field osm_id of feature 17148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959550 of field osm_id of feature 17149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959551 of field osm_id of feature 17150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959552 of field osm_id of feature 17151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959553 of field osm_id of feature 17152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959554 of field osm_id of feature 17153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959555 of field osm_id of feature 17154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959556 of field osm_id of feature 17155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959558 of field osm_id of feature 17156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959559 of field osm_id of feature 17157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959559 of field osm_id of feature 17158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959560 of field osm_id of feature 17159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959561 of field osm_id of feature 17160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959562 of field osm_id of feature 17161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959563 of field osm_id of feature 17162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959564 of field osm_id of feature 17163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959565 of field osm_id of feature 17164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959567 of field osm_id of feature 17165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959568 of field osm_id of feature 17166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959569 of field osm_id of feature 17167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959570 of field osm_id of feature 17168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959571 of field osm_id of feature 17169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959573 of field osm_id of feature 17170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959575 of field osm_id of feature 17171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959576 of field osm_id of feature 17172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959580 of field osm_id of feature 17173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959582 of field osm_id of feature 17174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959584 of field osm_id of feature 17175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959585 of field osm_id of feature 17176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959586 of field osm_id of feature 17177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959587 of field osm_id of feature 17178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959588 of field osm_id of feature 17179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959590 of field osm_id of feature 17180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959591 of field osm_id of feature 17181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959592 of field osm_id of feature 17182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959593 of field osm_id of feature 17183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959594 of field osm_id of feature 17184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959595 of field osm_id of feature 17185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959595 of field osm_id of feature 17186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959596 of field osm_id of feature 17187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959596 of field osm_id of feature 17188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959597 of field osm_id of feature 17189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175959599 of field osm_id of feature 17190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175990950 of field osm_id of feature 17191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175990952 of field osm_id of feature 17192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175990953 of field osm_id of feature 17193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175990954 of field osm_id of feature 17194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175992327 of field osm_id of feature 17195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175992328 of field osm_id of feature 17196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175992329 of field osm_id of feature 17197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175992330 of field osm_id of feature 17198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 175992331 of field osm_id of feature 17199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174477 of field osm_id of feature 17200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174478 of field osm_id of feature 17201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174479 of field osm_id of feature 17202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174481 of field osm_id of feature 17203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174484 of field osm_id of feature 17204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174487 of field osm_id of feature 17205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174500 of field osm_id of feature 17206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174503 of field osm_id of feature 17207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174506 of field osm_id of feature 17208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174510 of field osm_id of feature 17209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174517 of field osm_id of feature 17210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174518 of field osm_id of feature 17211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174519 of field osm_id of feature 17212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174531 of field osm_id of feature 17213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174533 of field osm_id of feature 17214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174535 of field osm_id of feature 17215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174537 of field osm_id of feature 17216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174544 of field osm_id of feature 17217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174545 of field osm_id of feature 17218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174557 of field osm_id of feature 17219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174559 of field osm_id of feature 17220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174561 of field osm_id of feature 17221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174562 of field osm_id of feature 17222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174564 of field osm_id of feature 17223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174574 of field osm_id of feature 17224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174581 of field osm_id of feature 17225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174582 of field osm_id of feature 17226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174583 of field osm_id of feature 17227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174584 of field osm_id of feature 17228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174585 of field osm_id of feature 17229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174587 of field osm_id of feature 17230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174592 of field osm_id of feature 17231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174594 of field osm_id of feature 17232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174595 of field osm_id of feature 17233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174596 of field osm_id of feature 17234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174599 of field osm_id of feature 17235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174611 of field osm_id of feature 17236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174622 of field osm_id of feature 17237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174631 of field osm_id of feature 17238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174633 of field osm_id of feature 17239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174634 of field osm_id of feature 17240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174635 of field osm_id of feature 17241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174643 of field osm_id of feature 17242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174646 of field osm_id of feature 17243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174648 of field osm_id of feature 17244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174650 of field osm_id of feature 17245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174653 of field osm_id of feature 17246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174654 of field osm_id of feature 17247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174655 of field osm_id of feature 17248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174656 of field osm_id of feature 17249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174657 of field osm_id of feature 17250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174661 of field osm_id of feature 17251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174664 of field osm_id of feature 17252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174668 of field osm_id of feature 17253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174669 of field osm_id of feature 17254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174671 of field osm_id of feature 17255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174672 of field osm_id of feature 17256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174674 of field osm_id of feature 17257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174677 of field osm_id of feature 17258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174678 of field osm_id of feature 17259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174680 of field osm_id of feature 17260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174681 of field osm_id of feature 17261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174682 of field osm_id of feature 17262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174684 of field osm_id of feature 17263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174698 of field osm_id of feature 17264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174699 of field osm_id of feature 17265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174700 of field osm_id of feature 17266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174701 of field osm_id of feature 17267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174702 of field osm_id of feature 17268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174706 of field osm_id of feature 17269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174719 of field osm_id of feature 17270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174725 of field osm_id of feature 17271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174725 of field osm_id of feature 17272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174731 of field osm_id of feature 17273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174732 of field osm_id of feature 17274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176174735 of field osm_id of feature 17275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204374 of field osm_id of feature 17276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204376 of field osm_id of feature 17277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204378 of field osm_id of feature 17278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204380 of field osm_id of feature 17279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204381 of field osm_id of feature 17280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204385 of field osm_id of feature 17281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204386 of field osm_id of feature 17282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204388 of field osm_id of feature 17283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204390 of field osm_id of feature 17284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204391 of field osm_id of feature 17285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204392 of field osm_id of feature 17286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204393 of field osm_id of feature 17287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204394 of field osm_id of feature 17288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204395 of field osm_id of feature 17289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204396 of field osm_id of feature 17290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204398 of field osm_id of feature 17291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204399 of field osm_id of feature 17292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204401 of field osm_id of feature 17293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204405 of field osm_id of feature 17294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204406 of field osm_id of feature 17295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204410 of field osm_id of feature 17296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204413 of field osm_id of feature 17297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204415 of field osm_id of feature 17298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204416 of field osm_id of feature 17299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204417 of field osm_id of feature 17300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204422 of field osm_id of feature 17301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204423 of field osm_id of feature 17302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204424 of field osm_id of feature 17303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204426 of field osm_id of feature 17304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204426 of field osm_id of feature 17305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204427 of field osm_id of feature 17306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204428 of field osm_id of feature 17307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204429 of field osm_id of feature 17308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204430 of field osm_id of feature 17309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204431 of field osm_id of feature 17310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204432 of field osm_id of feature 17311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204434 of field osm_id of feature 17312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204435 of field osm_id of feature 17313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204437 of field osm_id of feature 17314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204439 of field osm_id of feature 17315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204441 of field osm_id of feature 17316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204442 of field osm_id of feature 17317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204444 of field osm_id of feature 17318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204447 of field osm_id of feature 17319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204448 of field osm_id of feature 17320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204448 of field osm_id of feature 17321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204451 of field osm_id of feature 17322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204454 of field osm_id of feature 17323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204455 of field osm_id of feature 17324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545362402 of field osm_id of feature 17325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204456 of field osm_id of feature 17326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545362403 of field osm_id of feature 17327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204457 of field osm_id of feature 17328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204458 of field osm_id of feature 17329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204459 of field osm_id of feature 17330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204460 of field osm_id of feature 17331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204461 of field osm_id of feature 17332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204463 of field osm_id of feature 17333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204464 of field osm_id of feature 17334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204466 of field osm_id of feature 17335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204471 of field osm_id of feature 17336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204472 of field osm_id of feature 17337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204474 of field osm_id of feature 17338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204475 of field osm_id of feature 17339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204476 of field osm_id of feature 17340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204477 of field osm_id of feature 17341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204478 of field osm_id of feature 17342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204480 of field osm_id of feature 17343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204481 of field osm_id of feature 17344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204482 of field osm_id of feature 17345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204483 of field osm_id of feature 17346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204484 of field osm_id of feature 17347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204485 of field osm_id of feature 17348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204486 of field osm_id of feature 17349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545363599 of field osm_id of feature 17350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204493 of field osm_id of feature 17351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204494 of field osm_id of feature 17352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204495 of field osm_id of feature 17353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204496 of field osm_id of feature 17354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204501 of field osm_id of feature 17355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204507 of field osm_id of feature 17356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204509 of field osm_id of feature 17357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204510 of field osm_id of feature 17358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204511 of field osm_id of feature 17359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204512 of field osm_id of feature 17360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204513 of field osm_id of feature 17361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204513 of field osm_id of feature 17362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204514 of field osm_id of feature 17363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204516 of field osm_id of feature 17364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204516 of field osm_id of feature 17365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204517 of field osm_id of feature 17366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204518 of field osm_id of feature 17367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204520 of field osm_id of feature 17368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204521 of field osm_id of feature 17369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204522 of field osm_id of feature 17370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204523 of field osm_id of feature 17371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204525 of field osm_id of feature 17372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204526 of field osm_id of feature 17373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204527 of field osm_id of feature 17374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204528 of field osm_id of feature 17375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204529 of field osm_id of feature 17376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204530 of field osm_id of feature 17377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204531 of field osm_id of feature 17378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204532 of field osm_id of feature 17379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204533 of field osm_id of feature 17380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204534 of field osm_id of feature 17381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204535 of field osm_id of feature 17382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204540 of field osm_id of feature 17383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204541 of field osm_id of feature 17384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204542 of field osm_id of feature 17385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204543 of field osm_id of feature 17386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204544 of field osm_id of feature 17387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204545 of field osm_id of feature 17388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204546 of field osm_id of feature 17389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204549 of field osm_id of feature 17390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204550 of field osm_id of feature 17391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204551 of field osm_id of feature 17392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204554 of field osm_id of feature 17393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204555 of field osm_id of feature 17394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204561 of field osm_id of feature 17395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204563 of field osm_id of feature 17396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204565 of field osm_id of feature 17397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204568 of field osm_id of feature 17398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204569 of field osm_id of feature 17399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204573 of field osm_id of feature 17400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204575 of field osm_id of feature 17401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204581 of field osm_id of feature 17402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204585 of field osm_id of feature 17403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204587 of field osm_id of feature 17404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204588 of field osm_id of feature 17405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204591 of field osm_id of feature 17406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204595 of field osm_id of feature 17407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204597 of field osm_id of feature 17408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204598 of field osm_id of feature 17409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204599 of field osm_id of feature 17410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204600 of field osm_id of feature 17411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204601 of field osm_id of feature 17412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204602 of field osm_id of feature 17413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204603 of field osm_id of feature 17414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204604 of field osm_id of feature 17415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204605 of field osm_id of feature 17416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204606 of field osm_id of feature 17417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204607 of field osm_id of feature 17418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204614 of field osm_id of feature 17419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204616 of field osm_id of feature 17420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204618 of field osm_id of feature 17421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204620 of field osm_id of feature 17422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204621 of field osm_id of feature 17423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204622 of field osm_id of feature 17424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204622 of field osm_id of feature 17425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204623 of field osm_id of feature 17426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204624 of field osm_id of feature 17427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204624 of field osm_id of feature 17428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204627 of field osm_id of feature 17429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204628 of field osm_id of feature 17430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204630 of field osm_id of feature 17431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204633 of field osm_id of feature 17432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204637 of field osm_id of feature 17433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204638 of field osm_id of feature 17434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204639 of field osm_id of feature 17435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204640 of field osm_id of feature 17436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204641 of field osm_id of feature 17437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204643 of field osm_id of feature 17438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204645 of field osm_id of feature 17439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176204647 of field osm_id of feature 17440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176208181 of field osm_id of feature 17441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176208184 of field osm_id of feature 17442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176209659 of field osm_id of feature 17443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176209660 of field osm_id of feature 17444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176210035 of field osm_id of feature 17445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176213717 of field osm_id of feature 17446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216260 of field osm_id of feature 17447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216261 of field osm_id of feature 17448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216262 of field osm_id of feature 17449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545506390 of field osm_id of feature 17450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216263 of field osm_id of feature 17451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545506393 of field osm_id of feature 17452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216264 of field osm_id of feature 17453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545506394 of field osm_id of feature 17454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216265 of field osm_id of feature 17455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545506397 of field osm_id of feature 17456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216266 of field osm_id of feature 17457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216267 of field osm_id of feature 17458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216268 of field osm_id of feature 17459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216269 of field osm_id of feature 17460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216270 of field osm_id of feature 17461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216271 of field osm_id of feature 17462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216272 of field osm_id of feature 17463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216275 of field osm_id of feature 17464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176216276 of field osm_id of feature 17465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273809 of field osm_id of feature 17466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273810 of field osm_id of feature 17467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273820 of field osm_id of feature 17468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273821 of field osm_id of feature 17469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273822 of field osm_id of feature 17470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273823 of field osm_id of feature 17471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273824 of field osm_id of feature 17472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273831 of field osm_id of feature 17473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545514776 of field osm_id of feature 17474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273832 of field osm_id of feature 17475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545514777 of field osm_id of feature 17476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176273835 of field osm_id of feature 17477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296628 of field osm_id of feature 17478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296629 of field osm_id of feature 17479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296630 of field osm_id of feature 17480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296631 of field osm_id of feature 17481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296632 of field osm_id of feature 17482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296633 of field osm_id of feature 17483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296634 of field osm_id of feature 17484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296635 of field osm_id of feature 17485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296636 of field osm_id of feature 17486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296640 of field osm_id of feature 17487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296641 of field osm_id of feature 17488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296642 of field osm_id of feature 17489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296642 of field osm_id of feature 17490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296643 of field osm_id of feature 17491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296644 of field osm_id of feature 17492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296646 of field osm_id of feature 17493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296647 of field osm_id of feature 17494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296648 of field osm_id of feature 17495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296649 of field osm_id of feature 17496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296650 of field osm_id of feature 17497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296651 of field osm_id of feature 17498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296652 of field osm_id of feature 17499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296653 of field osm_id of feature 17500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296653 of field osm_id of feature 17501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296657 of field osm_id of feature 17502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296657 of field osm_id of feature 17503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296658 of field osm_id of feature 17504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296664 of field osm_id of feature 17505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296665 of field osm_id of feature 17506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296667 of field osm_id of feature 17507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296669 of field osm_id of feature 17508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296671 of field osm_id of feature 17509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296672 of field osm_id of feature 17510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296674 of field osm_id of feature 17511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296677 of field osm_id of feature 17512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296679 of field osm_id of feature 17513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296683 of field osm_id of feature 17514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296686 of field osm_id of feature 17515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296686 of field osm_id of feature 17516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296690 of field osm_id of feature 17517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296692 of field osm_id of feature 17518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296693 of field osm_id of feature 17519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296696 of field osm_id of feature 17520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296697 of field osm_id of feature 17521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296700 of field osm_id of feature 17522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296702 of field osm_id of feature 17523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296703 of field osm_id of feature 17524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296704 of field osm_id of feature 17525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296705 of field osm_id of feature 17526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296707 of field osm_id of feature 17527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296708 of field osm_id of feature 17528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296710 of field osm_id of feature 17529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296711 of field osm_id of feature 17530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296713 of field osm_id of feature 17531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296714 of field osm_id of feature 17532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296715 of field osm_id of feature 17533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296716 of field osm_id of feature 17534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296717 of field osm_id of feature 17535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296718 of field osm_id of feature 17536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296719 of field osm_id of feature 17537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296720 of field osm_id of feature 17538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296720 of field osm_id of feature 17539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296722 of field osm_id of feature 17540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296723 of field osm_id of feature 17541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296725 of field osm_id of feature 17542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296726 of field osm_id of feature 17543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296727 of field osm_id of feature 17544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296728 of field osm_id of feature 17545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296729 of field osm_id of feature 17546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296730 of field osm_id of feature 17547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296731 of field osm_id of feature 17548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296733 of field osm_id of feature 17549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296734 of field osm_id of feature 17550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296735 of field osm_id of feature 17551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296736 of field osm_id of feature 17552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545531004 of field osm_id of feature 17553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296737 of field osm_id of feature 17554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296738 of field osm_id of feature 17555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296739 of field osm_id of feature 17556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296740 of field osm_id of feature 17557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296741 of field osm_id of feature 17558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296742 of field osm_id of feature 17559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296744 of field osm_id of feature 17560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296745 of field osm_id of feature 17561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176296746 of field osm_id of feature 17562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298695 of field osm_id of feature 17563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298699 of field osm_id of feature 17564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298701 of field osm_id of feature 17565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298702 of field osm_id of feature 17566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298703 of field osm_id of feature 17567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176298704 of field osm_id of feature 17568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176300154 of field osm_id of feature 17569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176305409 of field osm_id of feature 17570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176305410 of field osm_id of feature 17571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176305742 of field osm_id of feature 17572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176305743 of field osm_id of feature 17573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176305745 of field osm_id of feature 17574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545533921 of field osm_id of feature 17575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545533923 of field osm_id of feature 17576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545533925 of field osm_id of feature 17577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 176906684 of field osm_id of feature 17578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545535220 of field osm_id of feature 17579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545535221 of field osm_id of feature 17580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177430567 of field osm_id of feature 17581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177430568 of field osm_id of feature 17582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177430569 of field osm_id of feature 17583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177430570 of field osm_id of feature 17584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545538812 of field osm_id of feature 17585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545538813 of field osm_id of feature 17586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177601233 of field osm_id of feature 17587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177601240 of field osm_id of feature 17588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177695657 of field osm_id of feature 17589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177695658 of field osm_id of feature 17590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177695659 of field osm_id of feature 17591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696833 of field osm_id of feature 17592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696833 of field osm_id of feature 17593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696836 of field osm_id of feature 17594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696837 of field osm_id of feature 17595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696839 of field osm_id of feature 17596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177696840 of field osm_id of feature 17597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177999329 of field osm_id of feature 17598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 177999330 of field osm_id of feature 17599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178001532 of field osm_id of feature 17600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178103451 of field osm_id of feature 17601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178103482 of field osm_id of feature 17602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104911 of field osm_id of feature 17603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104912 of field osm_id of feature 17604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104913 of field osm_id of feature 17605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104914 of field osm_id of feature 17606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104915 of field osm_id of feature 17607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104916 of field osm_id of feature 17608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104917 of field osm_id of feature 17609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104918 of field osm_id of feature 17610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104919 of field osm_id of feature 17611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104920 of field osm_id of feature 17612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104921 of field osm_id of feature 17613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545551847 of field osm_id of feature 17614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104922 of field osm_id of feature 17615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104923 of field osm_id of feature 17616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104925 of field osm_id of feature 17617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104927 of field osm_id of feature 17618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104928 of field osm_id of feature 17619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178104929 of field osm_id of feature 17620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178219626 of field osm_id of feature 17621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178219628 of field osm_id of feature 17622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178436583 of field osm_id of feature 17623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178436586 of field osm_id of feature 17624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178436587 of field osm_id of feature 17625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178437067 of field osm_id of feature 17626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545556032 of field osm_id of feature 17627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545556033 of field osm_id of feature 17628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545556034 of field osm_id of feature 17629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545556800 of field osm_id of feature 17630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178582398 of field osm_id of feature 17631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178582401 of field osm_id of feature 17632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545557381 of field osm_id of feature 17633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545557382 of field osm_id of feature 17634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545557383 of field osm_id of feature 17635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178582406 of field osm_id of feature 17636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178591204 of field osm_id of feature 17637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178591204 of field osm_id of feature 17638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545558795 of field osm_id of feature 17639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594760 of field osm_id of feature 17640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545558796 of field osm_id of feature 17641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594763 of field osm_id of feature 17642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545564466 of field osm_id of feature 17643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594764 of field osm_id of feature 17644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545564467 of field osm_id of feature 17645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594765 of field osm_id of feature 17646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545564774 of field osm_id of feature 17647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594772 of field osm_id of feature 17648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178594775 of field osm_id of feature 17649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 178929252 of field osm_id of feature 17650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180101836 of field osm_id of feature 17651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180147807 of field osm_id of feature 17652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545566369 of field osm_id of feature 17653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545566370 of field osm_id of feature 17654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180475176 of field osm_id of feature 17655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180535682 of field osm_id of feature 17656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180551357 of field osm_id of feature 17657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180551367 of field osm_id of feature 17658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180551368 of field osm_id of feature 17659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180551369 of field osm_id of feature 17660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545568765 of field osm_id of feature 17661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180656339 of field osm_id of feature 17662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180656340 of field osm_id of feature 17663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 180656341 of field osm_id of feature 17664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545570315 of field osm_id of feature 17665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545570316 of field osm_id of feature 17666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545570317 of field osm_id of feature 17667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545570318 of field osm_id of feature 17668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545570812 of field osm_id of feature 17669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545571743 of field osm_id of feature 17670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545574464 of field osm_id of feature 17671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545574465 of field osm_id of feature 17672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545575506 of field osm_id of feature 17673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545577776 of field osm_id of feature 17674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545579321 of field osm_id of feature 17675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545579322 of field osm_id of feature 17676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545579323 of field osm_id of feature 17677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545581641 of field osm_id of feature 17678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545582219 of field osm_id of feature 17679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545582220 of field osm_id of feature 17680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545582221 of field osm_id of feature 17681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002740 of field osm_id of feature 17682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002741 of field osm_id of feature 17683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002742 of field osm_id of feature 17684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002746 of field osm_id of feature 17685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002748 of field osm_id of feature 17686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181002749 of field osm_id of feature 17687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006857 of field osm_id of feature 17688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006859 of field osm_id of feature 17689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545787318 of field osm_id of feature 17690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545787407 of field osm_id of feature 17691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 545815442 of field osm_id of feature 17692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006863 of field osm_id of feature 17693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006864 of field osm_id of feature 17694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006866 of field osm_id of feature 17695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006867 of field osm_id of feature 17696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006868 of field osm_id of feature 17697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546138263 of field osm_id of feature 17698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006869 of field osm_id of feature 17699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546138265 of field osm_id of feature 17700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006870 of field osm_id of feature 17701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546138268 of field osm_id of feature 17702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 181006871 of field osm_id of feature 17703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546138269 of field osm_id of feature 17704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182062217 of field osm_id of feature 17705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182217054 of field osm_id of feature 17706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182217142 of field osm_id of feature 17707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182803357 of field osm_id of feature 17708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182829062 of field osm_id of feature 17709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182829067 of field osm_id of feature 17710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182829068 of field osm_id of feature 17711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 182829071 of field osm_id of feature 17712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 183321504 of field osm_id of feature 17713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 183858495 of field osm_id of feature 17714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546149171 of field osm_id of feature 17715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546149173 of field osm_id of feature 17716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 183975450 of field osm_id of feature 17717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546153529 of field osm_id of feature 17718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546153530 of field osm_id of feature 17719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184304771 of field osm_id of feature 17720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184389543 of field osm_id of feature 17721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184640347 of field osm_id of feature 17722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184641339 of field osm_id of feature 17723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184641340 of field osm_id of feature 17724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650700 of field osm_id of feature 17725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650703 of field osm_id of feature 17726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650705 of field osm_id of feature 17727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650708 of field osm_id of feature 17728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650718 of field osm_id of feature 17729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650722 of field osm_id of feature 17730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184650724 of field osm_id of feature 17731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184745090 of field osm_id of feature 17732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184785166 of field osm_id of feature 17733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170896 of field osm_id of feature 17734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170901 of field osm_id of feature 17735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170904 of field osm_id of feature 17736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170907 of field osm_id of feature 17737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170910 of field osm_id of feature 17738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170914 of field osm_id of feature 17739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170918 of field osm_id of feature 17740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184786263 of field osm_id of feature 17741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546170921 of field osm_id of feature 17742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 184914386 of field osm_id of feature 17743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185279268 of field osm_id of feature 17744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185279269 of field osm_id of feature 17745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185566015 of field osm_id of feature 17746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546173344 of field osm_id of feature 17747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185999404 of field osm_id of feature 17748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185999697 of field osm_id of feature 17749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 185999698 of field osm_id of feature 17750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546173992 of field osm_id of feature 17751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546173993 of field osm_id of feature 17752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546173994 of field osm_id of feature 17753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186486835 of field osm_id of feature 17754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546173995 of field osm_id of feature 17755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186486836 of field osm_id of feature 17756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186486983 of field osm_id of feature 17757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186486986 of field osm_id of feature 17758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186492299 of field osm_id of feature 17759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186496845 of field osm_id of feature 17760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 186496846 of field osm_id of feature 17761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 187888617 of field osm_id of feature 17762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 187888621 of field osm_id of feature 17763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 187888686 of field osm_id of feature 17764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 187888687 of field osm_id of feature 17765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 187888691 of field osm_id of feature 17766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546178668 of field osm_id of feature 17767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546178670 of field osm_id of feature 17768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546178671 of field osm_id of feature 17769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166136 of field osm_id of feature 17770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166136 of field osm_id of feature 17771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166137 of field osm_id of feature 17772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166138 of field osm_id of feature 17773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166138 of field osm_id of feature 17774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166139 of field osm_id of feature 17775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188166548 of field osm_id of feature 17776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188171711 of field osm_id of feature 17777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188171896 of field osm_id of feature 17778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546183809 of field osm_id of feature 17779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546185641 of field osm_id of feature 17780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546185642 of field osm_id of feature 17781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546185643 of field osm_id of feature 17782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546185644 of field osm_id of feature 17783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546185646 of field osm_id of feature 17784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188205270 of field osm_id of feature 17785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188324776 of field osm_id of feature 17786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188324777 of field osm_id of feature 17787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188428281 of field osm_id of feature 17788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188428910 of field osm_id of feature 17789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188622388 of field osm_id of feature 17790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188857641 of field osm_id of feature 17791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188857642 of field osm_id of feature 17792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188857644 of field osm_id of feature 17793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 188857645 of field osm_id of feature 17794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189196414 of field osm_id of feature 17795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189241205 of field osm_id of feature 17796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189241434 of field osm_id of feature 17797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189241435 of field osm_id of feature 17798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189315814 of field osm_id of feature 17799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189315827 of field osm_id of feature 17800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 189324810 of field osm_id of feature 17801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190010166 of field osm_id of feature 17802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190023274 of field osm_id of feature 17803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190023276 of field osm_id of feature 17804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190023277 of field osm_id of feature 17805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190023278 of field osm_id of feature 17806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546205695 of field osm_id of feature 17807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546206046 of field osm_id of feature 17808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546206046 of field osm_id of feature 17809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546206047 of field osm_id of feature 17810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546206047 of field osm_id of feature 17811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190446516 of field osm_id of feature 17812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190446517 of field osm_id of feature 17813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190446518 of field osm_id of feature 17814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190447075 of field osm_id of feature 17815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190447829 of field osm_id of feature 17816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190451323 of field osm_id of feature 17817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190451325 of field osm_id of feature 17818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190451326 of field osm_id of feature 17819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190451327 of field osm_id of feature 17820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190458387 of field osm_id of feature 17821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534085 of field osm_id of feature 17822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534087 of field osm_id of feature 17823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534089 of field osm_id of feature 17824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534093 of field osm_id of feature 17825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534094 of field osm_id of feature 17826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534096 of field osm_id of feature 17827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190534102 of field osm_id of feature 17828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535811 of field osm_id of feature 17829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535812 of field osm_id of feature 17830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535813 of field osm_id of feature 17831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535814 of field osm_id of feature 17832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535815 of field osm_id of feature 17833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190535816 of field osm_id of feature 17834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190537567 of field osm_id of feature 17835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190537572 of field osm_id of feature 17836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190539567 of field osm_id of feature 17837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190539568 of field osm_id of feature 17838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190539569 of field osm_id of feature 17839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190586444 of field osm_id of feature 17840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190681356 of field osm_id of feature 17841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190681357 of field osm_id of feature 17842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190681365 of field osm_id of feature 17843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190944910 of field osm_id of feature 17844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945733 of field osm_id of feature 17845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945734 of field osm_id of feature 17846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945738 of field osm_id of feature 17847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945739 of field osm_id of feature 17848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546214983 of field osm_id of feature 17849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945769 of field osm_id of feature 17850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 190945770 of field osm_id of feature 17851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546215615 of field osm_id of feature 17852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 191378404 of field osm_id of feature 17853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 191427047 of field osm_id of feature 17854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 191427048 of field osm_id of feature 17855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 191427049 of field osm_id of feature 17856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 192071793 of field osm_id of feature 17857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 192180395 of field osm_id of feature 17858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 192183553 of field osm_id of feature 17859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546217660 of field osm_id of feature 17860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546217663 of field osm_id of feature 17861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546217828 of field osm_id of feature 17862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 192940058 of field osm_id of feature 17863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546225035 of field osm_id of feature 17864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546373514 of field osm_id of feature 17865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546373514 of field osm_id of feature 17866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546374011 of field osm_id of feature 17867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546379638 of field osm_id of feature 17868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546380408 of field osm_id of feature 17869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546381456 of field osm_id of feature 17870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546382974 of field osm_id of feature 17871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546382975 of field osm_id of feature 17872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383503 of field osm_id of feature 17873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383504 of field osm_id of feature 17874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383505 of field osm_id of feature 17875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383506 of field osm_id of feature 17876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383873 of field osm_id of feature 17877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546383874 of field osm_id of feature 17878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384213 of field osm_id of feature 17879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384214 of field osm_id of feature 17880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384215 of field osm_id of feature 17881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384216 of field osm_id of feature 17882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384217 of field osm_id of feature 17883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384218 of field osm_id of feature 17884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384219 of field osm_id of feature 17885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384220 of field osm_id of feature 17886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384221 of field osm_id of feature 17887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384222 of field osm_id of feature 17888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384223 of field osm_id of feature 17889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546384224 of field osm_id of feature 17890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546398066 of field osm_id of feature 17891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546398066 of field osm_id of feature 17892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194418903 of field osm_id of feature 17893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194418903 of field osm_id of feature 17894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654913 of field osm_id of feature 17895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654914 of field osm_id of feature 17896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654915 of field osm_id of feature 17897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654916 of field osm_id of feature 17898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654917 of field osm_id of feature 17899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546402188 of field osm_id of feature 17900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654918 of field osm_id of feature 17901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546402191 of field osm_id of feature 17902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654927 of field osm_id of feature 17903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654930 of field osm_id of feature 17904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654931 of field osm_id of feature 17905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654932 of field osm_id of feature 17906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654934 of field osm_id of feature 17907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654935 of field osm_id of feature 17908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194654938 of field osm_id of feature 17909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403234 of field osm_id of feature 17910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403237 of field osm_id of feature 17911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403239 of field osm_id of feature 17912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403242 of field osm_id of feature 17913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403244 of field osm_id of feature 17914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546403246 of field osm_id of feature 17915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546404554 of field osm_id of feature 17916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546404555 of field osm_id of feature 17917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 194761557 of field osm_id of feature 17918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546404556 of field osm_id of feature 17919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546406967 of field osm_id of feature 17920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546408942 of field osm_id of feature 17921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546410355 of field osm_id of feature 17922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693361 of field osm_id of feature 17923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693363 of field osm_id of feature 17924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693364 of field osm_id of feature 17925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693365 of field osm_id of feature 17926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693366 of field osm_id of feature 17927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693376 of field osm_id of feature 17928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693379 of field osm_id of feature 17929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693380 of field osm_id of feature 17930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546414751 of field osm_id of feature 17931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195693386 of field osm_id of feature 17932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694168 of field osm_id of feature 17933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546418658 of field osm_id of feature 17934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694169 of field osm_id of feature 17935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546418659 of field osm_id of feature 17936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694170 of field osm_id of feature 17937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694171 of field osm_id of feature 17938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694172 of field osm_id of feature 17939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694173 of field osm_id of feature 17940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694174 of field osm_id of feature 17941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694175 of field osm_id of feature 17942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694176 of field osm_id of feature 17943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694177 of field osm_id of feature 17944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694178 of field osm_id of feature 17945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 195694179 of field osm_id of feature 17946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196047159 of field osm_id of feature 17947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196309249 of field osm_id of feature 17948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196309253 of field osm_id of feature 17949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196312513 of field osm_id of feature 17950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196315046 of field osm_id of feature 17951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 196817555 of field osm_id of feature 17952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197540844 of field osm_id of feature 17953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197540845 of field osm_id of feature 17954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197540846 of field osm_id of feature 17955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197540847 of field osm_id of feature 17956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197540848 of field osm_id of feature 17957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197634744 of field osm_id of feature 17958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546426711 of field osm_id of feature 17959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546426817 of field osm_id of feature 17960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546428314 of field osm_id of feature 17961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546428619 of field osm_id of feature 17962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 197635750 of field osm_id of feature 17963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546430019 of field osm_id of feature 17964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546430026 of field osm_id of feature 17965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546430027 of field osm_id of feature 17966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198099036 of field osm_id of feature 17967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198099244 of field osm_id of feature 17968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198109975 of field osm_id of feature 17969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198159681 of field osm_id of feature 17970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198159688 of field osm_id of feature 17971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198159690 of field osm_id of feature 17972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198159691 of field osm_id of feature 17973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198192632 of field osm_id of feature 17974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198261799 of field osm_id of feature 17975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371731 of field osm_id of feature 17976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371732 of field osm_id of feature 17977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371733 of field osm_id of feature 17978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371734 of field osm_id of feature 17979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371736 of field osm_id of feature 17980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198371737 of field osm_id of feature 17981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404196 of field osm_id of feature 17982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404307 of field osm_id of feature 17983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404308 of field osm_id of feature 17984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404362 of field osm_id of feature 17985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404363 of field osm_id of feature 17986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404603 of field osm_id of feature 17987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404604 of field osm_id of feature 17988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404605 of field osm_id of feature 17989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404606 of field osm_id of feature 17990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404607 of field osm_id of feature 17991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404608 of field osm_id of feature 17992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404609 of field osm_id of feature 17993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404610 of field osm_id of feature 17994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404612 of field osm_id of feature 17995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404613 of field osm_id of feature 17996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404614 of field osm_id of feature 17997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404615 of field osm_id of feature 17998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404813 of field osm_id of feature 17999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404814 of field osm_id of feature 18000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404815 of field osm_id of feature 18001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404817 of field osm_id of feature 18002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404818 of field osm_id of feature 18003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404822 of field osm_id of feature 18004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546437384 of field osm_id of feature 18005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404823 of field osm_id of feature 18006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198404825 of field osm_id of feature 18007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546437700 of field osm_id of feature 18008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546438772 of field osm_id of feature 18009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198458261 of field osm_id of feature 18010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546452120 of field osm_id of feature 18011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546453824 of field osm_id of feature 18012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460381 of field osm_id of feature 18013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460382 of field osm_id of feature 18014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460383 of field osm_id of feature 18015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460384 of field osm_id of feature 18016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460384 of field osm_id of feature 18017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546460385 of field osm_id of feature 18018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546463754 of field osm_id of feature 18019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546633413 of field osm_id of feature 18020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546633414 of field osm_id of feature 18021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546633415 of field osm_id of feature 18022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546633416 of field osm_id of feature 18023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546633417 of field osm_id of feature 18024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637196 of field osm_id of feature 18025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637196 of field osm_id of feature 18026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637197 of field osm_id of feature 18027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637317 of field osm_id of feature 18028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637318 of field osm_id of feature 18029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546637319 of field osm_id of feature 18030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546640738 of field osm_id of feature 18031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546640741 of field osm_id of feature 18032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546640744 of field osm_id of feature 18033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546640747 of field osm_id of feature 18034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546652769 of field osm_id of feature 18035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546652770 of field osm_id of feature 18036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198468660 of field osm_id of feature 18037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198468692 of field osm_id of feature 18038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198470478 of field osm_id of feature 18039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198470916 of field osm_id of feature 18040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198470917 of field osm_id of feature 18041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 198990366 of field osm_id of feature 18042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 199922081 of field osm_id of feature 18043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159265 of field osm_id of feature 18044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159265 of field osm_id of feature 18045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159268 of field osm_id of feature 18046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159270 of field osm_id of feature 18047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159270 of field osm_id of feature 18048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159273 of field osm_id of feature 18049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159274 of field osm_id of feature 18050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159278 of field osm_id of feature 18051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159280 of field osm_id of feature 18052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159283 of field osm_id of feature 18053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546668226 of field osm_id of feature 18054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159286 of field osm_id of feature 18055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159288 of field osm_id of feature 18056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159289 of field osm_id of feature 18057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159290 of field osm_id of feature 18058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159291 of field osm_id of feature 18059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159292 of field osm_id of feature 18060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159296 of field osm_id of feature 18061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159297 of field osm_id of feature 18062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159298 of field osm_id of feature 18063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159299 of field osm_id of feature 18064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159300 of field osm_id of feature 18065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159301 of field osm_id of feature 18066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159302 of field osm_id of feature 18067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159305 of field osm_id of feature 18068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159306 of field osm_id of feature 18069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159308 of field osm_id of feature 18070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159309 of field osm_id of feature 18071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159310 of field osm_id of feature 18072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159339 of field osm_id of feature 18073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159341 of field osm_id of feature 18074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159343 of field osm_id of feature 18075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159345 of field osm_id of feature 18076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159347 of field osm_id of feature 18077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159348 of field osm_id of feature 18078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159350 of field osm_id of feature 18079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159351 of field osm_id of feature 18080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159353 of field osm_id of feature 18081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159355 of field osm_id of feature 18082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159356 of field osm_id of feature 18083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159356 of field osm_id of feature 18084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159357 of field osm_id of feature 18085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159358 of field osm_id of feature 18086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159359 of field osm_id of feature 18087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159360 of field osm_id of feature 18088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200159361 of field osm_id of feature 18089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200167219 of field osm_id of feature 18090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200167220 of field osm_id of feature 18091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200171266 of field osm_id of feature 18092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 200295683 of field osm_id of feature 18093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109103 of field osm_id of feature 18094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109105 of field osm_id of feature 18095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109106 of field osm_id of feature 18096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109110 of field osm_id of feature 18097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109111 of field osm_id of feature 18098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201109112 of field osm_id of feature 18099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201115813 of field osm_id of feature 18100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201115813 of field osm_id of feature 18101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546684912 of field osm_id of feature 18102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546684913 of field osm_id of feature 18103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201581422 of field osm_id of feature 18104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201587108 of field osm_id of feature 18105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546688860 of field osm_id of feature 18106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201767823 of field osm_id of feature 18107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201767824 of field osm_id of feature 18108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201904039 of field osm_id of feature 18109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201904054 of field osm_id of feature 18110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201904062 of field osm_id of feature 18111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 201919773 of field osm_id of feature 18112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546697871 of field osm_id of feature 18113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546701607 of field osm_id of feature 18114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546701608 of field osm_id of feature 18115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546701609 of field osm_id of feature 18116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202054173 of field osm_id of feature 18117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202055065 of field osm_id of feature 18118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202227107 of field osm_id of feature 18119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202227113 of field osm_id of feature 18120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202227115 of field osm_id of feature 18121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541066 of field osm_id of feature 18122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541067 of field osm_id of feature 18123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541068 of field osm_id of feature 18124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541069 of field osm_id of feature 18125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541070 of field osm_id of feature 18126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541071 of field osm_id of feature 18127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541072 of field osm_id of feature 18128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 202541113 of field osm_id of feature 18129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203112564 of field osm_id of feature 18130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203112565 of field osm_id of feature 18131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203112566 of field osm_id of feature 18132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203112567 of field osm_id of feature 18133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203214027 of field osm_id of feature 18134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546707342 of field osm_id of feature 18135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546707343 of field osm_id of feature 18136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203976191 of field osm_id of feature 18137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 203976193 of field osm_id of feature 18138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192278 of field osm_id of feature 18139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546728191 of field osm_id of feature 18140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192281 of field osm_id of feature 18141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546736353 of field osm_id of feature 18142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192287 of field osm_id of feature 18143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546736354 of field osm_id of feature 18144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192290 of field osm_id of feature 18145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192293 of field osm_id of feature 18146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192294 of field osm_id of feature 18147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192296 of field osm_id of feature 18148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204192302 of field osm_id of feature 18149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204335715 of field osm_id of feature 18150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204335727 of field osm_id of feature 18151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204335734 of field osm_id of feature 18152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204335746 of field osm_id of feature 18153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204514833 of field osm_id of feature 18154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204514834 of field osm_id of feature 18155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204515040 of field osm_id of feature 18156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204515041 of field osm_id of feature 18157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204515042 of field osm_id of feature 18158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204883765 of field osm_id of feature 18159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892598 of field osm_id of feature 18160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892599 of field osm_id of feature 18161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892600 of field osm_id of feature 18162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892601 of field osm_id of feature 18163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892603 of field osm_id of feature 18164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892604 of field osm_id of feature 18165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204892605 of field osm_id of feature 18166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204911129 of field osm_id of feature 18167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204911130 of field osm_id of feature 18168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 204911131 of field osm_id of feature 18169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 206786975 of field osm_id of feature 18170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 206786975 of field osm_id of feature 18171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546897107 of field osm_id of feature 18172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546897405 of field osm_id of feature 18173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546900445 of field osm_id of feature 18174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546904839 of field osm_id of feature 18175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546904840 of field osm_id of feature 18176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546904841 of field osm_id of feature 18177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546929519 of field osm_id of feature 18178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546929520 of field osm_id of feature 18179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 546929521 of field osm_id of feature 18180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 213582782 of field osm_id of feature 18181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 213582785 of field osm_id of feature 18182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 213582822 of field osm_id of feature 18183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 213587626 of field osm_id of feature 18184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547088135 of field osm_id of feature 18185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 213587627 of field osm_id of feature 18186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547089279 of field osm_id of feature 18187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 214051716 of field osm_id of feature 18188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 214051718 of field osm_id of feature 18189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 214051723 of field osm_id of feature 18190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102448 of field osm_id of feature 18191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102449 of field osm_id of feature 18192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102450 of field osm_id of feature 18193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102451 of field osm_id of feature 18194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102452 of field osm_id of feature 18195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547102453 of field osm_id of feature 18196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215299 of field osm_id of feature 18197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215300 of field osm_id of feature 18198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215301 of field osm_id of feature 18199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215304 of field osm_id of feature 18200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215370 of field osm_id of feature 18201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215371 of field osm_id of feature 18202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215373 of field osm_id of feature 18203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215374 of field osm_id of feature 18204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215375 of field osm_id of feature 18205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215376 of field osm_id of feature 18206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215377 of field osm_id of feature 18207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215378 of field osm_id of feature 18208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215379 of field osm_id of feature 18209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215382 of field osm_id of feature 18210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215383 of field osm_id of feature 18211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215384 of field osm_id of feature 18212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215385 of field osm_id of feature 18213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215386 of field osm_id of feature 18214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215387 of field osm_id of feature 18215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215388 of field osm_id of feature 18216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215389 of field osm_id of feature 18217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215390 of field osm_id of feature 18218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547111452 of field osm_id of feature 18219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215391 of field osm_id of feature 18220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215392 of field osm_id of feature 18221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215393 of field osm_id of feature 18222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215394 of field osm_id of feature 18223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215396 of field osm_id of feature 18224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215398 of field osm_id of feature 18225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215400 of field osm_id of feature 18226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215402 of field osm_id of feature 18227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215404 of field osm_id of feature 18228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215407 of field osm_id of feature 18229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215409 of field osm_id of feature 18230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215411 of field osm_id of feature 18231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215413 of field osm_id of feature 18232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215415 of field osm_id of feature 18233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218215420 of field osm_id of feature 18234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 218253805 of field osm_id of feature 18235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977129 of field osm_id of feature 18236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977140 of field osm_id of feature 18237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977142 of field osm_id of feature 18238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977144 of field osm_id of feature 18239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977145 of field osm_id of feature 18240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977147 of field osm_id of feature 18241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977152 of field osm_id of feature 18242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 219977157 of field osm_id of feature 18243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547117969 of field osm_id of feature 18244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547117970 of field osm_id of feature 18245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547138468 of field osm_id of feature 18246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547138469 of field osm_id of feature 18247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547139030 of field osm_id of feature 18248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223626629 of field osm_id of feature 18249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223630342 of field osm_id of feature 18250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223630344 of field osm_id of feature 18251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547143036 of field osm_id of feature 18252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547143044 of field osm_id of feature 18253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547143046 of field osm_id of feature 18254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223667496 of field osm_id of feature 18255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669127 of field osm_id of feature 18256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669128 of field osm_id of feature 18257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669129 of field osm_id of feature 18258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669130 of field osm_id of feature 18259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669131 of field osm_id of feature 18260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669132 of field osm_id of feature 18261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669133 of field osm_id of feature 18262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669134 of field osm_id of feature 18263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669135 of field osm_id of feature 18264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223669136 of field osm_id of feature 18265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223671419 of field osm_id of feature 18266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223671420 of field osm_id of feature 18267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223671421 of field osm_id of feature 18268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860387 of field osm_id of feature 18269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860388 of field osm_id of feature 18270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860389 of field osm_id of feature 18271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860391 of field osm_id of feature 18272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860394 of field osm_id of feature 18273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860395 of field osm_id of feature 18274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860396 of field osm_id of feature 18275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860397 of field osm_id of feature 18276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860398 of field osm_id of feature 18277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860399 of field osm_id of feature 18278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860400 of field osm_id of feature 18279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860401 of field osm_id of feature 18280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860402 of field osm_id of feature 18281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860403 of field osm_id of feature 18282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860404 of field osm_id of feature 18283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547147261 of field osm_id of feature 18284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860405 of field osm_id of feature 18285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547147262 of field osm_id of feature 18286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860406 of field osm_id of feature 18287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860407 of field osm_id of feature 18288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547147494 of field osm_id of feature 18289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547147494 of field osm_id of feature 18290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860408 of field osm_id of feature 18291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547147495 of field osm_id of feature 18292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860409 of field osm_id of feature 18293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860410 of field osm_id of feature 18294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860411 of field osm_id of feature 18295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860412 of field osm_id of feature 18296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860415 of field osm_id of feature 18297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860416 of field osm_id of feature 18298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860417 of field osm_id of feature 18299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860418 of field osm_id of feature 18300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860419 of field osm_id of feature 18301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860420 of field osm_id of feature 18302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860421 of field osm_id of feature 18303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860422 of field osm_id of feature 18304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860423 of field osm_id of feature 18305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860424 of field osm_id of feature 18306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547150226 of field osm_id of feature 18307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860425 of field osm_id of feature 18308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860426 of field osm_id of feature 18309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860427 of field osm_id of feature 18310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860428 of field osm_id of feature 18311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860429 of field osm_id of feature 18312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860430 of field osm_id of feature 18313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860431 of field osm_id of feature 18314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860432 of field osm_id of feature 18315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860433 of field osm_id of feature 18316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860437 of field osm_id of feature 18317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860438 of field osm_id of feature 18318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860460 of field osm_id of feature 18319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860461 of field osm_id of feature 18320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860461 of field osm_id of feature 18321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860462 of field osm_id of feature 18322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860463 of field osm_id of feature 18323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860464 of field osm_id of feature 18324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860466 of field osm_id of feature 18325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860470 of field osm_id of feature 18326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547154926 of field osm_id of feature 18327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860471 of field osm_id of feature 18328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860472 of field osm_id of feature 18329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860474 of field osm_id of feature 18330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547218076 of field osm_id of feature 18331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860475 of field osm_id of feature 18332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547218077 of field osm_id of feature 18333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860476 of field osm_id of feature 18334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860477 of field osm_id of feature 18335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860478 of field osm_id of feature 18336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860483 of field osm_id of feature 18337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860484 of field osm_id of feature 18338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860485 of field osm_id of feature 18339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860486 of field osm_id of feature 18340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223860489 of field osm_id of feature 18341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863468 of field osm_id of feature 18342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863469 of field osm_id of feature 18343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863470 of field osm_id of feature 18344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863472 of field osm_id of feature 18345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863473 of field osm_id of feature 18346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863476 of field osm_id of feature 18347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863481 of field osm_id of feature 18348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863483 of field osm_id of feature 18349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863489 of field osm_id of feature 18350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863490 of field osm_id of feature 18351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863491 of field osm_id of feature 18352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863492 of field osm_id of feature 18353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223863493 of field osm_id of feature 18354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868454 of field osm_id of feature 18355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868455 of field osm_id of feature 18356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868456 of field osm_id of feature 18357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868457 of field osm_id of feature 18358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868458 of field osm_id of feature 18359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868459 of field osm_id of feature 18360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868460 of field osm_id of feature 18361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868461 of field osm_id of feature 18362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868462 of field osm_id of feature 18363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223868462 of field osm_id of feature 18364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870417 of field osm_id of feature 18365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870418 of field osm_id of feature 18366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870419 of field osm_id of feature 18367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870420 of field osm_id of feature 18368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870421 of field osm_id of feature 18369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870422 of field osm_id of feature 18370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870423 of field osm_id of feature 18371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870424 of field osm_id of feature 18372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870425 of field osm_id of feature 18373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223870426 of field osm_id of feature 18374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223929521 of field osm_id of feature 18375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 223932098 of field osm_id of feature 18376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 224054713 of field osm_id of feature 18377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 224605071 of field osm_id of feature 18378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 225347142 of field osm_id of feature 18379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 225347144 of field osm_id of feature 18380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226204633 of field osm_id of feature 18381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226204636 of field osm_id of feature 18382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226209024 of field osm_id of feature 18383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226209025 of field osm_id of feature 18384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226209026 of field osm_id of feature 18385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226209285 of field osm_id of feature 18386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226209285 of field osm_id of feature 18387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226212626 of field osm_id of feature 18388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226212627 of field osm_id of feature 18389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226216286 of field osm_id of feature 18390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226219701 of field osm_id of feature 18391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 226219702 of field osm_id of feature 18392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227086704 of field osm_id of feature 18393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775121 of field osm_id of feature 18394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775123 of field osm_id of feature 18395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775126 of field osm_id of feature 18396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775126 of field osm_id of feature 18397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775127 of field osm_id of feature 18398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 227775127 of field osm_id of feature 18399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547650655 of field osm_id of feature 18400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547650656 of field osm_id of feature 18401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547650657 of field osm_id of feature 18402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547650658 of field osm_id of feature 18403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 547841059 of field osm_id of feature 18404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 548086056 of field osm_id of feature 18405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 548086059 of field osm_id of feature 18406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228631228 of field osm_id of feature 18407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228695467 of field osm_id of feature 18408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228839923 of field osm_id of feature 18409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919182 of field osm_id of feature 18410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919243 of field osm_id of feature 18411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919290 of field osm_id of feature 18412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919425 of field osm_id of feature 18413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919426 of field osm_id of feature 18414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919427 of field osm_id of feature 18415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919428 of field osm_id of feature 18416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228919429 of field osm_id of feature 18417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920202 of field osm_id of feature 18418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920204 of field osm_id of feature 18419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920205 of field osm_id of feature 18420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920206 of field osm_id of feature 18421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920207 of field osm_id of feature 18422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920208 of field osm_id of feature 18423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920209 of field osm_id of feature 18424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920210 of field osm_id of feature 18425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920211 of field osm_id of feature 18426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920212 of field osm_id of feature 18427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920213 of field osm_id of feature 18428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920214 of field osm_id of feature 18429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920215 of field osm_id of feature 18430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920404 of field osm_id of feature 18431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228920486 of field osm_id of feature 18432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 549166032 of field osm_id of feature 18433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 549166034 of field osm_id of feature 18434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 549300150 of field osm_id of feature 18435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 549300151 of field osm_id of feature 18436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228921255 of field osm_id of feature 18437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228921256 of field osm_id of feature 18438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 228921257 of field osm_id of feature 18439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030282 of field osm_id of feature 18440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030284 of field osm_id of feature 18441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030285 of field osm_id of feature 18442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030286 of field osm_id of feature 18443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030287 of field osm_id of feature 18444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030289 of field osm_id of feature 18445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030290 of field osm_id of feature 18446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030330 of field osm_id of feature 18447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030331 of field osm_id of feature 18448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229030332 of field osm_id of feature 18449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229031883 of field osm_id of feature 18450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161748 of field osm_id of feature 18451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161749 of field osm_id of feature 18452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161750 of field osm_id of feature 18453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161752 of field osm_id of feature 18454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161753 of field osm_id of feature 18455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161755 of field osm_id of feature 18456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161756 of field osm_id of feature 18457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161760 of field osm_id of feature 18458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161761 of field osm_id of feature 18459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161762 of field osm_id of feature 18460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161766 of field osm_id of feature 18461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161767 of field osm_id of feature 18462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161768 of field osm_id of feature 18463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161769 of field osm_id of feature 18464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229161772 of field osm_id of feature 18465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229262763 of field osm_id of feature 18466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229366642 of field osm_id of feature 18467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229370921 of field osm_id of feature 18468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229370922 of field osm_id of feature 18469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229383114 of field osm_id of feature 18470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229481092 of field osm_id of feature 18471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229481092 of field osm_id of feature 18472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229490425 of field osm_id of feature 18473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229490425 of field osm_id of feature 18474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229499352 of field osm_id of feature 18475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229630743 of field osm_id of feature 18476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229679641 of field osm_id of feature 18477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229679647 of field osm_id of feature 18478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229680507 of field osm_id of feature 18479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229680509 of field osm_id of feature 18480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 550372796 of field osm_id of feature 18481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229680511 of field osm_id of feature 18482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229680512 of field osm_id of feature 18483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229680514 of field osm_id of feature 18484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229852969 of field osm_id of feature 18485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 550374147 of field osm_id of feature 18486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 551163895 of field osm_id of feature 18487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229953072 of field osm_id of feature 18488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 229953125 of field osm_id of feature 18489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230018292 of field osm_id of feature 18490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230018293 of field osm_id of feature 18491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230018294 of field osm_id of feature 18492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230019723 of field osm_id of feature 18493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230019725 of field osm_id of feature 18494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230078161 of field osm_id of feature 18495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230117961 of field osm_id of feature 18496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230118149 of field osm_id of feature 18497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230398588 of field osm_id of feature 18498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230398715 of field osm_id of feature 18499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230398716 of field osm_id of feature 18500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230422852 of field osm_id of feature 18501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230523729 of field osm_id of feature 18502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230523731 of field osm_id of feature 18503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230628453 of field osm_id of feature 18504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230628454 of field osm_id of feature 18505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230628677 of field osm_id of feature 18506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230628678 of field osm_id of feature 18507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230629274 of field osm_id of feature 18508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230629275 of field osm_id of feature 18509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230631236 of field osm_id of feature 18510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230631326 of field osm_id of feature 18511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230631326 of field osm_id of feature 18512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230631327 of field osm_id of feature 18513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230638328 of field osm_id of feature 18514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230638330 of field osm_id of feature 18515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646663 of field osm_id of feature 18516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646679 of field osm_id of feature 18517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646679 of field osm_id of feature 18518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646687 of field osm_id of feature 18519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646688 of field osm_id of feature 18520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646689 of field osm_id of feature 18521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646690 of field osm_id of feature 18522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646691 of field osm_id of feature 18523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646693 of field osm_id of feature 18524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646694 of field osm_id of feature 18525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646695 of field osm_id of feature 18526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646698 of field osm_id of feature 18527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646699 of field osm_id of feature 18528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646700 of field osm_id of feature 18529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646700 of field osm_id of feature 18530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230646711 of field osm_id of feature 18531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230779716 of field osm_id of feature 18532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230779717 of field osm_id of feature 18533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230785210 of field osm_id of feature 18534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230785216 of field osm_id of feature 18535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230787799 of field osm_id of feature 18536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 230795207 of field osm_id of feature 18537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190614 of field osm_id of feature 18538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190615 of field osm_id of feature 18539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190616 of field osm_id of feature 18540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190618 of field osm_id of feature 18541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190619 of field osm_id of feature 18542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231190621 of field osm_id of feature 18543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414420 of field osm_id of feature 18544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414421 of field osm_id of feature 18545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414422 of field osm_id of feature 18546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414423 of field osm_id of feature 18547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414424 of field osm_id of feature 18548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414426 of field osm_id of feature 18549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 231414427 of field osm_id of feature 18550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 232127657 of field osm_id of feature 18551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 232356129 of field osm_id of feature 18552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 233206231 of field osm_id of feature 18553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 233206236 of field osm_id of feature 18554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234371325 of field osm_id of feature 18555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234371419 of field osm_id of feature 18556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234554249 of field osm_id of feature 18557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234730993 of field osm_id of feature 18558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234731323 of field osm_id of feature 18559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234870973 of field osm_id of feature 18560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873073 of field osm_id of feature 18561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873075 of field osm_id of feature 18562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873077 of field osm_id of feature 18563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873079 of field osm_id of feature 18564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873080 of field osm_id of feature 18565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873083 of field osm_id of feature 18566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873087 of field osm_id of feature 18567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873383 of field osm_id of feature 18568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234873384 of field osm_id of feature 18569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234877581 of field osm_id of feature 18570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234877582 of field osm_id of feature 18571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234881026 of field osm_id of feature 18572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234881029 of field osm_id of feature 18573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234881032 of field osm_id of feature 18574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234881037 of field osm_id of feature 18575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234885296 of field osm_id of feature 18576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889285 of field osm_id of feature 18577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889286 of field osm_id of feature 18578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889287 of field osm_id of feature 18579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889288 of field osm_id of feature 18580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889289 of field osm_id of feature 18581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889696 of field osm_id of feature 18582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889697 of field osm_id of feature 18583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234889698 of field osm_id of feature 18584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962149 of field osm_id of feature 18585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962150 of field osm_id of feature 18586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962151 of field osm_id of feature 18587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962152 of field osm_id of feature 18588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962153 of field osm_id of feature 18589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 234962154 of field osm_id of feature 18590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 235916084 of field osm_id of feature 18591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 235968926 of field osm_id of feature 18592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238030021 of field osm_id of feature 18593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238030094 of field osm_id of feature 18594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238030095 of field osm_id of feature 18595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238685145 of field osm_id of feature 18596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238927296 of field osm_id of feature 18597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238927723 of field osm_id of feature 18598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964394 of field osm_id of feature 18599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964395 of field osm_id of feature 18600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964397 of field osm_id of feature 18601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964398 of field osm_id of feature 18602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964399 of field osm_id of feature 18603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964400 of field osm_id of feature 18604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964401 of field osm_id of feature 18605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964402 of field osm_id of feature 18606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964403 of field osm_id of feature 18607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964404 of field osm_id of feature 18608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964424 of field osm_id of feature 18609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964425 of field osm_id of feature 18610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964426 of field osm_id of feature 18611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964429 of field osm_id of feature 18612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964430 of field osm_id of feature 18613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964431 of field osm_id of feature 18614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964432 of field osm_id of feature 18615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964433 of field osm_id of feature 18616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964434 of field osm_id of feature 18617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964435 of field osm_id of feature 18618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964436 of field osm_id of feature 18619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964437 of field osm_id of feature 18620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 238964438 of field osm_id of feature 18621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 240137260 of field osm_id of feature 18622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241063509 of field osm_id of feature 18623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241063510 of field osm_id of feature 18624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241063511 of field osm_id of feature 18625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113055 of field osm_id of feature 18626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113056 of field osm_id of feature 18627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113057 of field osm_id of feature 18628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113058 of field osm_id of feature 18629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113059 of field osm_id of feature 18630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113060 of field osm_id of feature 18631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241113062 of field osm_id of feature 18632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241192304 of field osm_id of feature 18633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241192306 of field osm_id of feature 18634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241192307 of field osm_id of feature 18635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241247312 of field osm_id of feature 18636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241254709 of field osm_id of feature 18637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241254711 of field osm_id of feature 18638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241254828 of field osm_id of feature 18639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241254902 of field osm_id of feature 18640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241254903 of field osm_id of feature 18641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241259057 of field osm_id of feature 18642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241262732 of field osm_id of feature 18643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241282475 of field osm_id of feature 18644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241503221 of field osm_id of feature 18645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241503222 of field osm_id of feature 18646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241574417 of field osm_id of feature 18647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241574418 of field osm_id of feature 18648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241574419 of field osm_id of feature 18649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241577556 of field osm_id of feature 18650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241577557 of field osm_id of feature 18651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241588658 of field osm_id of feature 18652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241588661 of field osm_id of feature 18653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241588663 of field osm_id of feature 18654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241588946 of field osm_id of feature 18655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241588947 of field osm_id of feature 18656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 241592991 of field osm_id of feature 18657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243115944 of field osm_id of feature 18658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243115946 of field osm_id of feature 18659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243279466 of field osm_id of feature 18660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243287869 of field osm_id of feature 18661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243287870 of field osm_id of feature 18662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243287871 of field osm_id of feature 18663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243287872 of field osm_id of feature 18664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243293978 of field osm_id of feature 18665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243293980 of field osm_id of feature 18666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243293981 of field osm_id of feature 18667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243293982 of field osm_id of feature 18668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243293983 of field osm_id of feature 18669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243294215 of field osm_id of feature 18670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243294216 of field osm_id of feature 18671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243305243 of field osm_id of feature 18672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243305245 of field osm_id of feature 18673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243305248 of field osm_id of feature 18674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243309367 of field osm_id of feature 18675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243309368 of field osm_id of feature 18676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243309369 of field osm_id of feature 18677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243604423 of field osm_id of feature 18678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243610781 of field osm_id of feature 18679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243610857 of field osm_id of feature 18680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243610933 of field osm_id of feature 18681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243610933 of field osm_id of feature 18682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243654762 of field osm_id of feature 18683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243786218 of field osm_id of feature 18684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243786219 of field osm_id of feature 18685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 243786220 of field osm_id of feature 18686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244258373 of field osm_id of feature 18687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244258656 of field osm_id of feature 18688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244258879 of field osm_id of feature 18689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244261139 of field osm_id of feature 18690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244264209 of field osm_id of feature 18691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244264211 of field osm_id of feature 18692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362467 of field osm_id of feature 18693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362468 of field osm_id of feature 18694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362469 of field osm_id of feature 18695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362470 of field osm_id of feature 18696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362471 of field osm_id of feature 18697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362473 of field osm_id of feature 18698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362474 of field osm_id of feature 18699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362476 of field osm_id of feature 18700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362477 of field osm_id of feature 18701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362479 of field osm_id of feature 18702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362480 of field osm_id of feature 18703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362481 of field osm_id of feature 18704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362482 of field osm_id of feature 18705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362483 of field osm_id of feature 18706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362484 of field osm_id of feature 18707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362485 of field osm_id of feature 18708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362486 of field osm_id of feature 18709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362487 of field osm_id of feature 18710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362488 of field osm_id of feature 18711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362489 of field osm_id of feature 18712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362490 of field osm_id of feature 18713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244362491 of field osm_id of feature 18714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244549082 of field osm_id of feature 18715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550966 of field osm_id of feature 18716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550967 of field osm_id of feature 18717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550968 of field osm_id of feature 18718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550969 of field osm_id of feature 18719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550972 of field osm_id of feature 18720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550973 of field osm_id of feature 18721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550974 of field osm_id of feature 18722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550975 of field osm_id of feature 18723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550976 of field osm_id of feature 18724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550978 of field osm_id of feature 18725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550979 of field osm_id of feature 18726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550980 of field osm_id of feature 18727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550981 of field osm_id of feature 18728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550982 of field osm_id of feature 18729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244550983 of field osm_id of feature 18730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244557179 of field osm_id of feature 18731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244557184 of field osm_id of feature 18732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244557189 of field osm_id of feature 18733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244776082 of field osm_id of feature 18734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244776140 of field osm_id of feature 18735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244776140 of field osm_id of feature 18736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244833526 of field osm_id of feature 18737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244842552 of field osm_id of feature 18738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244842555 of field osm_id of feature 18739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244842557 of field osm_id of feature 18740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916055 of field osm_id of feature 18741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916056 of field osm_id of feature 18742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916480 of field osm_id of feature 18743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916481 of field osm_id of feature 18744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916481 of field osm_id of feature 18745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916482 of field osm_id of feature 18746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916482 of field osm_id of feature 18747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244916483 of field osm_id of feature 18748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918970 of field osm_id of feature 18749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918971 of field osm_id of feature 18750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918973 of field osm_id of feature 18751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918973 of field osm_id of feature 18752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918994 of field osm_id of feature 18753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918994 of field osm_id of feature 18754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918995 of field osm_id of feature 18755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 244918997 of field osm_id of feature 18756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245003022 of field osm_id of feature 18757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245004755 of field osm_id of feature 18758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245004756 of field osm_id of feature 18759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245136609 of field osm_id of feature 18760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245136611 of field osm_id of feature 18761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138447 of field osm_id of feature 18762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138448 of field osm_id of feature 18763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138453 of field osm_id of feature 18764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138455 of field osm_id of feature 18765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138517 of field osm_id of feature 18766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138518 of field osm_id of feature 18767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138519 of field osm_id of feature 18768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245138520 of field osm_id of feature 18769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245139657 of field osm_id of feature 18770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245139658 of field osm_id of feature 18771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245139909 of field osm_id of feature 18772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245139910 of field osm_id of feature 18773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245139911 of field osm_id of feature 18774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142277 of field osm_id of feature 18775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142278 of field osm_id of feature 18776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142278 of field osm_id of feature 18777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142279 of field osm_id of feature 18778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142281 of field osm_id of feature 18779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142282 of field osm_id of feature 18780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142507 of field osm_id of feature 18781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142509 of field osm_id of feature 18782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245142512 of field osm_id of feature 18783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245162450 of field osm_id of feature 18784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245263828 of field osm_id of feature 18785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245263871 of field osm_id of feature 18786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245263872 of field osm_id of feature 18787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 245933789 of field osm_id of feature 18788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248572783 of field osm_id of feature 18789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248572784 of field osm_id of feature 18790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820782 of field osm_id of feature 18791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820785 of field osm_id of feature 18792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820788 of field osm_id of feature 18793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820789 of field osm_id of feature 18794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820790 of field osm_id of feature 18795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820791 of field osm_id of feature 18796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 248820792 of field osm_id of feature 18797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 249837203 of field osm_id of feature 18798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251031277 of field osm_id of feature 18799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581972 of field osm_id of feature 18800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581973 of field osm_id of feature 18801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581974 of field osm_id of feature 18802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581974 of field osm_id of feature 18803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581975 of field osm_id of feature 18804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581976 of field osm_id of feature 18805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581977 of field osm_id of feature 18806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581978 of field osm_id of feature 18807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581979 of field osm_id of feature 18808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581980 of field osm_id of feature 18809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581981 of field osm_id of feature 18810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581982 of field osm_id of feature 18811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581988 of field osm_id of feature 18812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581989 of field osm_id of feature 18813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581990 of field osm_id of feature 18814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581991 of field osm_id of feature 18815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581992 of field osm_id of feature 18816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581993 of field osm_id of feature 18817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581994 of field osm_id of feature 18818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581995 of field osm_id of feature 18819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251581998 of field osm_id of feature 18820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582003 of field osm_id of feature 18821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582004 of field osm_id of feature 18822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582005 of field osm_id of feature 18823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582006 of field osm_id of feature 18824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582007 of field osm_id of feature 18825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582008 of field osm_id of feature 18826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582009 of field osm_id of feature 18827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582010 of field osm_id of feature 18828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582011 of field osm_id of feature 18829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582012 of field osm_id of feature 18830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582013 of field osm_id of feature 18831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582014 of field osm_id of feature 18832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582015 of field osm_id of feature 18833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582016 of field osm_id of feature 18834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582017 of field osm_id of feature 18835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582018 of field osm_id of feature 18836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582019 of field osm_id of feature 18837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582020 of field osm_id of feature 18838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582021 of field osm_id of feature 18839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582022 of field osm_id of feature 18840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582023 of field osm_id of feature 18841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582024 of field osm_id of feature 18842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582028 of field osm_id of feature 18843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582029 of field osm_id of feature 18844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582030 of field osm_id of feature 18845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582031 of field osm_id of feature 18846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582032 of field osm_id of feature 18847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582033 of field osm_id of feature 18848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582034 of field osm_id of feature 18849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582035 of field osm_id of feature 18850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582036 of field osm_id of feature 18851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582037 of field osm_id of feature 18852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582038 of field osm_id of feature 18853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582039 of field osm_id of feature 18854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582040 of field osm_id of feature 18855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582041 of field osm_id of feature 18856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582042 of field osm_id of feature 18857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582043 of field osm_id of feature 18858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582044 of field osm_id of feature 18859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582045 of field osm_id of feature 18860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582046 of field osm_id of feature 18861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582047 of field osm_id of feature 18862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582048 of field osm_id of feature 18863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582049 of field osm_id of feature 18864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582050 of field osm_id of feature 18865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582051 of field osm_id of feature 18866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582052 of field osm_id of feature 18867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582053 of field osm_id of feature 18868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582054 of field osm_id of feature 18869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582055 of field osm_id of feature 18870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582056 of field osm_id of feature 18871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582057 of field osm_id of feature 18872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582058 of field osm_id of feature 18873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582059 of field osm_id of feature 18874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582060 of field osm_id of feature 18875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582061 of field osm_id of feature 18876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582062 of field osm_id of feature 18877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582063 of field osm_id of feature 18878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582064 of field osm_id of feature 18879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582065 of field osm_id of feature 18880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582066 of field osm_id of feature 18881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582067 of field osm_id of feature 18882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582069 of field osm_id of feature 18883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582070 of field osm_id of feature 18884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582072 of field osm_id of feature 18885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582073 of field osm_id of feature 18886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582074 of field osm_id of feature 18887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582075 of field osm_id of feature 18888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582076 of field osm_id of feature 18889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582077 of field osm_id of feature 18890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582078 of field osm_id of feature 18891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582079 of field osm_id of feature 18892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582080 of field osm_id of feature 18893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582081 of field osm_id of feature 18894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582082 of field osm_id of feature 18895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582083 of field osm_id of feature 18896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582084 of field osm_id of feature 18897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582085 of field osm_id of feature 18898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582086 of field osm_id of feature 18899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582087 of field osm_id of feature 18900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582088 of field osm_id of feature 18901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582089 of field osm_id of feature 18902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582090 of field osm_id of feature 18903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582091 of field osm_id of feature 18904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582092 of field osm_id of feature 18905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582093 of field osm_id of feature 18906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582094 of field osm_id of feature 18907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582095 of field osm_id of feature 18908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582096 of field osm_id of feature 18909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582097 of field osm_id of feature 18910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582098 of field osm_id of feature 18911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582099 of field osm_id of feature 18912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582100 of field osm_id of feature 18913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582101 of field osm_id of feature 18914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582102 of field osm_id of feature 18915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582103 of field osm_id of feature 18916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582104 of field osm_id of feature 18917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582105 of field osm_id of feature 18918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582106 of field osm_id of feature 18919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582107 of field osm_id of feature 18920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582108 of field osm_id of feature 18921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582109 of field osm_id of feature 18922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582110 of field osm_id of feature 18923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582111 of field osm_id of feature 18924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582112 of field osm_id of feature 18925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582113 of field osm_id of feature 18926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582114 of field osm_id of feature 18927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582115 of field osm_id of feature 18928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582116 of field osm_id of feature 18929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582117 of field osm_id of feature 18930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582118 of field osm_id of feature 18931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582119 of field osm_id of feature 18932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582120 of field osm_id of feature 18933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582121 of field osm_id of feature 18934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582122 of field osm_id of feature 18935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582123 of field osm_id of feature 18936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582124 of field osm_id of feature 18937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582125 of field osm_id of feature 18938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582126 of field osm_id of feature 18939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582127 of field osm_id of feature 18940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582128 of field osm_id of feature 18941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582129 of field osm_id of feature 18942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582130 of field osm_id of feature 18943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582131 of field osm_id of feature 18944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582132 of field osm_id of feature 18945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582133 of field osm_id of feature 18946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582134 of field osm_id of feature 18947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582135 of field osm_id of feature 18948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582136 of field osm_id of feature 18949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582141 of field osm_id of feature 18950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582141 of field osm_id of feature 18951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582155 of field osm_id of feature 18952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582156 of field osm_id of feature 18953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582158 of field osm_id of feature 18954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582159 of field osm_id of feature 18955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582162 of field osm_id of feature 18956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582163 of field osm_id of feature 18957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582164 of field osm_id of feature 18958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582165 of field osm_id of feature 18959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582166 of field osm_id of feature 18960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582168 of field osm_id of feature 18961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582169 of field osm_id of feature 18962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582170 of field osm_id of feature 18963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582172 of field osm_id of feature 18964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582173 of field osm_id of feature 18965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582175 of field osm_id of feature 18966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582176 of field osm_id of feature 18967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582177 of field osm_id of feature 18968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582179 of field osm_id of feature 18969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582180 of field osm_id of feature 18970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582181 of field osm_id of feature 18971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582182 of field osm_id of feature 18972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582183 of field osm_id of feature 18973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582184 of field osm_id of feature 18974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582185 of field osm_id of feature 18975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582186 of field osm_id of feature 18976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582187 of field osm_id of feature 18977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582188 of field osm_id of feature 18978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582189 of field osm_id of feature 18979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582190 of field osm_id of feature 18980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582191 of field osm_id of feature 18981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582192 of field osm_id of feature 18982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582193 of field osm_id of feature 18983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582195 of field osm_id of feature 18984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251582196 of field osm_id of feature 18985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251584228 of field osm_id of feature 18986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251584228 of field osm_id of feature 18987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251585199 of field osm_id of feature 18988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251589103 of field osm_id of feature 18989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251589106 of field osm_id of feature 18990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251591892 of field osm_id of feature 18991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597137 of field osm_id of feature 18992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597138 of field osm_id of feature 18993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597144 of field osm_id of feature 18994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597145 of field osm_id of feature 18995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597147 of field osm_id of feature 18996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597150 of field osm_id of feature 18997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597151 of field osm_id of feature 18998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597152 of field osm_id of feature 18999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597154 of field osm_id of feature 19000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597155 of field osm_id of feature 19001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251597155 of field osm_id of feature 19002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251603193 of field osm_id of feature 19003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251603194 of field osm_id of feature 19004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251603194 of field osm_id of feature 19005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251604914 of field osm_id of feature 19006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251604915 of field osm_id of feature 19007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 251738994 of field osm_id of feature 19008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391081 of field osm_id of feature 19009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391644 of field osm_id of feature 19010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391645 of field osm_id of feature 19011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391651 of field osm_id of feature 19012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391652 of field osm_id of feature 19013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391664 of field osm_id of feature 19014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391665 of field osm_id of feature 19015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391667 of field osm_id of feature 19016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391668 of field osm_id of feature 19017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391669 of field osm_id of feature 19018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391670 of field osm_id of feature 19019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391672 of field osm_id of feature 19020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391673 of field osm_id of feature 19021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391676 of field osm_id of feature 19022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391679 of field osm_id of feature 19023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391680 of field osm_id of feature 19024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391681 of field osm_id of feature 19025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391682 of field osm_id of feature 19026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391683 of field osm_id of feature 19027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391688 of field osm_id of feature 19028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391689 of field osm_id of feature 19029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391690 of field osm_id of feature 19030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391691 of field osm_id of feature 19031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391692 of field osm_id of feature 19032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391694 of field osm_id of feature 19033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391695 of field osm_id of feature 19034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391696 of field osm_id of feature 19035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391697 of field osm_id of feature 19036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391698 of field osm_id of feature 19037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391699 of field osm_id of feature 19038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391700 of field osm_id of feature 19039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391701 of field osm_id of feature 19040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252391706 of field osm_id of feature 19041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 252395981 of field osm_id of feature 19042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253001834 of field osm_id of feature 19043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016581 of field osm_id of feature 19044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016584 of field osm_id of feature 19045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016587 of field osm_id of feature 19046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016589 of field osm_id of feature 19047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016591 of field osm_id of feature 19048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016593 of field osm_id of feature 19049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016595 of field osm_id of feature 19050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253016598 of field osm_id of feature 19051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253720980 of field osm_id of feature 19052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253720980 of field osm_id of feature 19053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253742975 of field osm_id of feature 19054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934295 of field osm_id of feature 19055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934302 of field osm_id of feature 19056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934304 of field osm_id of feature 19057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934305 of field osm_id of feature 19058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934306 of field osm_id of feature 19059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253934307 of field osm_id of feature 19060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253936681 of field osm_id of feature 19061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945316 of field osm_id of feature 19062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945325 of field osm_id of feature 19063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945329 of field osm_id of feature 19064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945334 of field osm_id of feature 19065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945358 of field osm_id of feature 19066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945363 of field osm_id of feature 19067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945368 of field osm_id of feature 19068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945372 of field osm_id of feature 19069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945376 of field osm_id of feature 19070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945383 of field osm_id of feature 19071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945387 of field osm_id of feature 19072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945389 of field osm_id of feature 19073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945391 of field osm_id of feature 19074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945406 of field osm_id of feature 19075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945407 of field osm_id of feature 19076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945408 of field osm_id of feature 19077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253945408 of field osm_id of feature 19078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253948870 of field osm_id of feature 19079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253956227 of field osm_id of feature 19080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 253956230 of field osm_id of feature 19081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254318871 of field osm_id of feature 19082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254344606 of field osm_id of feature 19083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254344607 of field osm_id of feature 19084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254570652 of field osm_id of feature 19085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254608260 of field osm_id of feature 19086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254608261 of field osm_id of feature 19087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254608263 of field osm_id of feature 19088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610489 of field osm_id of feature 19089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610490 of field osm_id of feature 19090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610491 of field osm_id of feature 19091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610492 of field osm_id of feature 19092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610493 of field osm_id of feature 19093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610494 of field osm_id of feature 19094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610495 of field osm_id of feature 19095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610502 of field osm_id of feature 19096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254610502 of field osm_id of feature 19097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254625513 of field osm_id of feature 19098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254993401 of field osm_id of feature 19099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254993672 of field osm_id of feature 19100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 254993690 of field osm_id of feature 19101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255002901 of field osm_id of feature 19102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255005277 of field osm_id of feature 19103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255006682 of field osm_id of feature 19104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255170827 of field osm_id of feature 19105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255344777 of field osm_id of feature 19106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255909812 of field osm_id of feature 19107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255969706 of field osm_id of feature 19108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255969798 of field osm_id of feature 19109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255970040 of field osm_id of feature 19110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 255970042 of field osm_id of feature 19111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160607 of field osm_id of feature 19112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160608 of field osm_id of feature 19113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160609 of field osm_id of feature 19114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160610 of field osm_id of feature 19115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160611 of field osm_id of feature 19116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256160612 of field osm_id of feature 19117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256262845 of field osm_id of feature 19118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256262846 of field osm_id of feature 19119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256262847 of field osm_id of feature 19120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256262849 of field osm_id of feature 19121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256266411 of field osm_id of feature 19122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256266412 of field osm_id of feature 19123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256427237 of field osm_id of feature 19124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256464655 of field osm_id of feature 19125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256464657 of field osm_id of feature 19126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256464658 of field osm_id of feature 19127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256464659 of field osm_id of feature 19128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 256474193 of field osm_id of feature 19129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 257750350 of field osm_id of feature 19130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 257750351 of field osm_id of feature 19131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258427231 of field osm_id of feature 19132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258427232 of field osm_id of feature 19133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258428434 of field osm_id of feature 19134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258428467 of field osm_id of feature 19135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258429536 of field osm_id of feature 19136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258451569 of field osm_id of feature 19137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258709537 of field osm_id of feature 19138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258726237 of field osm_id of feature 19139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258733505 of field osm_id of feature 19140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258733507 of field osm_id of feature 19141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258736323 of field osm_id of feature 19142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258736324 of field osm_id of feature 19143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763866 of field osm_id of feature 19144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763867 of field osm_id of feature 19145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763868 of field osm_id of feature 19146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763869 of field osm_id of feature 19147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763870 of field osm_id of feature 19148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763871 of field osm_id of feature 19149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763872 of field osm_id of feature 19150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258763873 of field osm_id of feature 19151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258764798 of field osm_id of feature 19152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766520 of field osm_id of feature 19153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766521 of field osm_id of feature 19154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766522 of field osm_id of feature 19155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766523 of field osm_id of feature 19156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766524 of field osm_id of feature 19157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766525 of field osm_id of feature 19158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258766526 of field osm_id of feature 19159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258769073 of field osm_id of feature 19160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258769074 of field osm_id of feature 19161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258769075 of field osm_id of feature 19162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258769076 of field osm_id of feature 19163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258776308 of field osm_id of feature 19164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777788 of field osm_id of feature 19165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777789 of field osm_id of feature 19166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777790 of field osm_id of feature 19167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777791 of field osm_id of feature 19168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777793 of field osm_id of feature 19169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258777794 of field osm_id of feature 19170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781369 of field osm_id of feature 19171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781370 of field osm_id of feature 19172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781372 of field osm_id of feature 19173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781373 of field osm_id of feature 19174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781375 of field osm_id of feature 19175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781376 of field osm_id of feature 19176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258781377 of field osm_id of feature 19177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258848243 of field osm_id of feature 19178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258849310 of field osm_id of feature 19179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258849312 of field osm_id of feature 19180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258849314 of field osm_id of feature 19181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258852884 of field osm_id of feature 19182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258865274 of field osm_id of feature 19183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258867440 of field osm_id of feature 19184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258867441 of field osm_id of feature 19185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258867442 of field osm_id of feature 19186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869354 of field osm_id of feature 19187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869355 of field osm_id of feature 19188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869356 of field osm_id of feature 19189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869357 of field osm_id of feature 19190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869358 of field osm_id of feature 19191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869359 of field osm_id of feature 19192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869360 of field osm_id of feature 19193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869361 of field osm_id of feature 19194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869363 of field osm_id of feature 19195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869364 of field osm_id of feature 19196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869365 of field osm_id of feature 19197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869366 of field osm_id of feature 19198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258869367 of field osm_id of feature 19199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258878473 of field osm_id of feature 19200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894417 of field osm_id of feature 19201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894418 of field osm_id of feature 19202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894420 of field osm_id of feature 19203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894421 of field osm_id of feature 19204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894422 of field osm_id of feature 19205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894423 of field osm_id of feature 19206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894424 of field osm_id of feature 19207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894425 of field osm_id of feature 19208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894426 of field osm_id of feature 19209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 258894427 of field osm_id of feature 19210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259337634 of field osm_id of feature 19211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259337640 of field osm_id of feature 19212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259338716 of field osm_id of feature 19213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259338718 of field osm_id of feature 19214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259338723 of field osm_id of feature 19215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259488768 of field osm_id of feature 19216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259488769 of field osm_id of feature 19217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686636 of field osm_id of feature 19218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686637 of field osm_id of feature 19219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686638 of field osm_id of feature 19220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686639 of field osm_id of feature 19221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686640 of field osm_id of feature 19222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686641 of field osm_id of feature 19223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686642 of field osm_id of feature 19224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686643 of field osm_id of feature 19225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686644 of field osm_id of feature 19226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686645 of field osm_id of feature 19227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686646 of field osm_id of feature 19228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686647 of field osm_id of feature 19229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686648 of field osm_id of feature 19230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686649 of field osm_id of feature 19231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686650 of field osm_id of feature 19232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259686651 of field osm_id of feature 19233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259693419 of field osm_id of feature 19234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259693420 of field osm_id of feature 19235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259693421 of field osm_id of feature 19236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259693422 of field osm_id of feature 19237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259852268 of field osm_id of feature 19238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259852271 of field osm_id of feature 19239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259854243 of field osm_id of feature 19240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 259855945 of field osm_id of feature 19241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260226370 of field osm_id of feature 19242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260226964 of field osm_id of feature 19243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260426005 of field osm_id of feature 19244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260459559 of field osm_id of feature 19245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260460564 of field osm_id of feature 19246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260460565 of field osm_id of feature 19247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260462165 of field osm_id of feature 19248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260465562 of field osm_id of feature 19249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260556310 of field osm_id of feature 19250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260556311 of field osm_id of feature 19251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260556828 of field osm_id of feature 19252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260556833 of field osm_id of feature 19253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260556898 of field osm_id of feature 19254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558341 of field osm_id of feature 19255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558342 of field osm_id of feature 19256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558435 of field osm_id of feature 19257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558436 of field osm_id of feature 19258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558461 of field osm_id of feature 19259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558462 of field osm_id of feature 19260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558463 of field osm_id of feature 19261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558464 of field osm_id of feature 19262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558472 of field osm_id of feature 19263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558473 of field osm_id of feature 19264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558474 of field osm_id of feature 19265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558477 of field osm_id of feature 19266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260558478 of field osm_id of feature 19267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559063 of field osm_id of feature 19268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559064 of field osm_id of feature 19269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559065 of field osm_id of feature 19270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559066 of field osm_id of feature 19271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559299 of field osm_id of feature 19272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260559300 of field osm_id of feature 19273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560557 of field osm_id of feature 19274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560558 of field osm_id of feature 19275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560559 of field osm_id of feature 19276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560560 of field osm_id of feature 19277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560678 of field osm_id of feature 19278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560679 of field osm_id of feature 19279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560679 of field osm_id of feature 19280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560683 of field osm_id of feature 19281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260560704 of field osm_id of feature 19282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260563908 of field osm_id of feature 19283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260564882 of field osm_id of feature 19284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260564887 of field osm_id of feature 19285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260571314 of field osm_id of feature 19286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260571315 of field osm_id of feature 19287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260571316 of field osm_id of feature 19288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260573526 of field osm_id of feature 19289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260573529 of field osm_id of feature 19290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260573531 of field osm_id of feature 19291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260573534 of field osm_id of feature 19292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260577414 of field osm_id of feature 19293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260577415 of field osm_id of feature 19294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260577416 of field osm_id of feature 19295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260577417 of field osm_id of feature 19296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260578035 of field osm_id of feature 19297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260580143 of field osm_id of feature 19298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755435 of field osm_id of feature 19299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755436 of field osm_id of feature 19300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755437 of field osm_id of feature 19301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755438 of field osm_id of feature 19302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755439 of field osm_id of feature 19303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260755440 of field osm_id of feature 19304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260777732 of field osm_id of feature 19305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260867982 of field osm_id of feature 19306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260868419 of field osm_id of feature 19307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 260868420 of field osm_id of feature 19308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261041684 of field osm_id of feature 19309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261041685 of field osm_id of feature 19310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261042100 of field osm_id of feature 19311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261169658 of field osm_id of feature 19312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261170716 of field osm_id of feature 19313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261170717 of field osm_id of feature 19314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261170718 of field osm_id of feature 19315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261170719 of field osm_id of feature 19316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261181357 of field osm_id of feature 19317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261181358 of field osm_id of feature 19318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261181359 of field osm_id of feature 19319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261182750 of field osm_id of feature 19320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261182751 of field osm_id of feature 19321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261185989 of field osm_id of feature 19322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261246158 of field osm_id of feature 19323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261252617 of field osm_id of feature 19324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261252618 of field osm_id of feature 19325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261252619 of field osm_id of feature 19326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261408130 of field osm_id of feature 19327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261408131 of field osm_id of feature 19328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261408131 of field osm_id of feature 19329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261409594 of field osm_id of feature 19330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261416295 of field osm_id of feature 19331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261416296 of field osm_id of feature 19332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261416298 of field osm_id of feature 19333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261416744 of field osm_id of feature 19334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261419055 of field osm_id of feature 19335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261419056 of field osm_id of feature 19336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261472797 of field osm_id of feature 19337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261472798 of field osm_id of feature 19338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261472800 of field osm_id of feature 19339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261472800 of field osm_id of feature 19340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261472801 of field osm_id of feature 19341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261641339 of field osm_id of feature 19342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804426 of field osm_id of feature 19343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804430 of field osm_id of feature 19344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804436 of field osm_id of feature 19345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804441 of field osm_id of feature 19346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804442 of field osm_id of feature 19347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804444 of field osm_id of feature 19348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804447 of field osm_id of feature 19349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804449 of field osm_id of feature 19350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804451 of field osm_id of feature 19351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804454 of field osm_id of feature 19352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804456 of field osm_id of feature 19353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804458 of field osm_id of feature 19354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804461 of field osm_id of feature 19355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804463 of field osm_id of feature 19356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804630 of field osm_id of feature 19357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804631 of field osm_id of feature 19358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804632 of field osm_id of feature 19359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804634 of field osm_id of feature 19360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261804635 of field osm_id of feature 19361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847816 of field osm_id of feature 19362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847816 of field osm_id of feature 19363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847816 of field osm_id of feature 19364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847817 of field osm_id of feature 19365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847818 of field osm_id of feature 19366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847819 of field osm_id of feature 19367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847820 of field osm_id of feature 19368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261847821 of field osm_id of feature 19369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851155 of field osm_id of feature 19370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851155 of field osm_id of feature 19371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851157 of field osm_id of feature 19372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851158 of field osm_id of feature 19373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851160 of field osm_id of feature 19374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851161 of field osm_id of feature 19375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851163 of field osm_id of feature 19376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851165 of field osm_id of feature 19377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261851166 of field osm_id of feature 19378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 261854975 of field osm_id of feature 19379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262173420 of field osm_id of feature 19380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262173421 of field osm_id of feature 19381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262173422 of field osm_id of feature 19382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190478 of field osm_id of feature 19383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190478 of field osm_id of feature 19384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190479 of field osm_id of feature 19385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190480 of field osm_id of feature 19386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190481 of field osm_id of feature 19387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262190481 of field osm_id of feature 19388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262308547 of field osm_id of feature 19389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262673265 of field osm_id of feature 19390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819983 of field osm_id of feature 19391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819984 of field osm_id of feature 19392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819989 of field osm_id of feature 19393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819990 of field osm_id of feature 19394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819991 of field osm_id of feature 19395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819992 of field osm_id of feature 19396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262819996 of field osm_id of feature 19397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262820000 of field osm_id of feature 19398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262820001 of field osm_id of feature 19399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262820008 of field osm_id of feature 19400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823295 of field osm_id of feature 19401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823296 of field osm_id of feature 19402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823302 of field osm_id of feature 19403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823303 of field osm_id of feature 19404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823306 of field osm_id of feature 19405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823307 of field osm_id of feature 19406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823308 of field osm_id of feature 19407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823308 of field osm_id of feature 19408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823309 of field osm_id of feature 19409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823309 of field osm_id of feature 19410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823310 of field osm_id of feature 19411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262823315 of field osm_id of feature 19412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262826530 of field osm_id of feature 19413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262826531 of field osm_id of feature 19414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262826532 of field osm_id of feature 19415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262826533 of field osm_id of feature 19416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262826534 of field osm_id of feature 19417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830239 of field osm_id of feature 19418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830240 of field osm_id of feature 19419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830241 of field osm_id of feature 19420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830242 of field osm_id of feature 19421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830243 of field osm_id of feature 19422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830244 of field osm_id of feature 19423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830245 of field osm_id of feature 19424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262830247 of field osm_id of feature 19425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262839506 of field osm_id of feature 19426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 262961712 of field osm_id of feature 19427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263314000 of field osm_id of feature 19428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263411882 of field osm_id of feature 19429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263411882 of field osm_id of feature 19430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263411884 of field osm_id of feature 19431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263411884 of field osm_id of feature 19432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263926705 of field osm_id of feature 19433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263927034 of field osm_id of feature 19434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263927035 of field osm_id of feature 19435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 263927036 of field osm_id of feature 19436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995922 of field osm_id of feature 19437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995923 of field osm_id of feature 19438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995924 of field osm_id of feature 19439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995925 of field osm_id of feature 19440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995926 of field osm_id of feature 19441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995927 of field osm_id of feature 19442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995928 of field osm_id of feature 19443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995929 of field osm_id of feature 19444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995930 of field osm_id of feature 19445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995931 of field osm_id of feature 19446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995932 of field osm_id of feature 19447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995933 of field osm_id of feature 19448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995934 of field osm_id of feature 19449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995935 of field osm_id of feature 19450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995935 of field osm_id of feature 19451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995936 of field osm_id of feature 19452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995937 of field osm_id of feature 19453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995938 of field osm_id of feature 19454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995939 of field osm_id of feature 19455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 264995940 of field osm_id of feature 19456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150724 of field osm_id of feature 19457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150726 of field osm_id of feature 19458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150727 of field osm_id of feature 19459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150734 of field osm_id of feature 19460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150735 of field osm_id of feature 19461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150736 of field osm_id of feature 19462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150737 of field osm_id of feature 19463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150738 of field osm_id of feature 19464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150739 of field osm_id of feature 19465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150740 of field osm_id of feature 19466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150742 of field osm_id of feature 19467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150743 of field osm_id of feature 19468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150798 of field osm_id of feature 19469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150799 of field osm_id of feature 19470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150800 of field osm_id of feature 19471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150801 of field osm_id of feature 19472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150802 of field osm_id of feature 19473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150803 of field osm_id of feature 19474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150804 of field osm_id of feature 19475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150805 of field osm_id of feature 19476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150806 of field osm_id of feature 19477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150807 of field osm_id of feature 19478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150808 of field osm_id of feature 19479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150809 of field osm_id of feature 19480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150810 of field osm_id of feature 19481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150811 of field osm_id of feature 19482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150812 of field osm_id of feature 19483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150813 of field osm_id of feature 19484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150814 of field osm_id of feature 19485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150815 of field osm_id of feature 19486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150816 of field osm_id of feature 19487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150817 of field osm_id of feature 19488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150818 of field osm_id of feature 19489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150819 of field osm_id of feature 19490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150820 of field osm_id of feature 19491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150821 of field osm_id of feature 19492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150823 of field osm_id of feature 19493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150824 of field osm_id of feature 19494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150825 of field osm_id of feature 19495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150826 of field osm_id of feature 19496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150826 of field osm_id of feature 19497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150827 of field osm_id of feature 19498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150827 of field osm_id of feature 19499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150828 of field osm_id of feature 19500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150828 of field osm_id of feature 19501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150829 of field osm_id of feature 19502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150830 of field osm_id of feature 19503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150831 of field osm_id of feature 19504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150832 of field osm_id of feature 19505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150835 of field osm_id of feature 19506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150836 of field osm_id of feature 19507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150837 of field osm_id of feature 19508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150838 of field osm_id of feature 19509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150839 of field osm_id of feature 19510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150839 of field osm_id of feature 19511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150840 of field osm_id of feature 19512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150840 of field osm_id of feature 19513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150841 of field osm_id of feature 19514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150842 of field osm_id of feature 19515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150843 of field osm_id of feature 19516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150844 of field osm_id of feature 19517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150845 of field osm_id of feature 19518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150846 of field osm_id of feature 19519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150847 of field osm_id of feature 19520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150865 of field osm_id of feature 19521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150872 of field osm_id of feature 19522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150875 of field osm_id of feature 19523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150876 of field osm_id of feature 19524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150877 of field osm_id of feature 19525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150878 of field osm_id of feature 19526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150882 of field osm_id of feature 19527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150883 of field osm_id of feature 19528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150888 of field osm_id of feature 19529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150889 of field osm_id of feature 19530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265150892 of field osm_id of feature 19531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 265156571 of field osm_id of feature 19532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 266258736 of field osm_id of feature 19533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 266258753 of field osm_id of feature 19534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 269909065 of field osm_id of feature 19535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 270465588 of field osm_id of feature 19536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 271397426 of field osm_id of feature 19537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 273177530 of field osm_id of feature 19538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 274199288 of field osm_id of feature 19539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 274465127 of field osm_id of feature 19540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 274497650 of field osm_id of feature 19541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 274497651 of field osm_id of feature 19542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 275613866 of field osm_id of feature 19543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 278008792 of field osm_id of feature 19544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 278720378 of field osm_id of feature 19545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 279275592 of field osm_id of feature 19546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 279275593 of field osm_id of feature 19547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 279813068 of field osm_id of feature 19548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 279817722 of field osm_id of feature 19549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 279817723 of field osm_id of feature 19550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 281820939 of field osm_id of feature 19551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 281820939 of field osm_id of feature 19552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283094435 of field osm_id of feature 19553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283097645 of field osm_id of feature 19554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283097646 of field osm_id of feature 19555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283097647 of field osm_id of feature 19556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283097650 of field osm_id of feature 19557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283100001 of field osm_id of feature 19558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283723579 of field osm_id of feature 19559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 283723580 of field osm_id of feature 19560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167586 of field osm_id of feature 19561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167588 of field osm_id of feature 19562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167589 of field osm_id of feature 19563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167590 of field osm_id of feature 19564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167591 of field osm_id of feature 19565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 284167592 of field osm_id of feature 19566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 285628341 of field osm_id of feature 19567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 285628342 of field osm_id of feature 19568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 285628343 of field osm_id of feature 19569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 285628344 of field osm_id of feature 19570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 285628345 of field osm_id of feature 19571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 287807178 of field osm_id of feature 19572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 287903590 of field osm_id of feature 19573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 287903591 of field osm_id of feature 19574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 287903592 of field osm_id of feature 19575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 287903593 of field osm_id of feature 19576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288648439 of field osm_id of feature 19577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288963445 of field osm_id of feature 19578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288997560 of field osm_id of feature 19579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288997562 of field osm_id of feature 19580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288997563 of field osm_id of feature 19581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 288997566 of field osm_id of feature 19582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289205958 of field osm_id of feature 19583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289205962 of field osm_id of feature 19584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209504 of field osm_id of feature 19585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209505 of field osm_id of feature 19586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209506 of field osm_id of feature 19587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209507 of field osm_id of feature 19588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209507 of field osm_id of feature 19589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209508 of field osm_id of feature 19590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209509 of field osm_id of feature 19591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209512 of field osm_id of feature 19592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209513 of field osm_id of feature 19593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289209513 of field osm_id of feature 19594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289419642 of field osm_id of feature 19595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 289419645 of field osm_id of feature 19596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291266545 of field osm_id of feature 19597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291266546 of field osm_id of feature 19598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291266547 of field osm_id of feature 19599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291346160 of field osm_id of feature 19600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291346160 of field osm_id of feature 19601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291412668 of field osm_id of feature 19602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291413073 of field osm_id of feature 19603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291413360 of field osm_id of feature 19604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291415380 of field osm_id of feature 19605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291415382 of field osm_id of feature 19606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291415384 of field osm_id of feature 19607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291415388 of field osm_id of feature 19608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 291415390 of field osm_id of feature 19609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292406863 of field osm_id of feature 19610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420411 of field osm_id of feature 19611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420419 of field osm_id of feature 19612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420420 of field osm_id of feature 19613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420425 of field osm_id of feature 19614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420428 of field osm_id of feature 19615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420454 of field osm_id of feature 19616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292420455 of field osm_id of feature 19617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292797378 of field osm_id of feature 19618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 292837134 of field osm_id of feature 19619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293106193 of field osm_id of feature 19620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293476140 of field osm_id of feature 19621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293476145 of field osm_id of feature 19622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293476147 of field osm_id of feature 19623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293478719 of field osm_id of feature 19624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480779 of field osm_id of feature 19625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480780 of field osm_id of feature 19626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480783 of field osm_id of feature 19627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480784 of field osm_id of feature 19628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480786 of field osm_id of feature 19629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480789 of field osm_id of feature 19630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293480790 of field osm_id of feature 19631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293503100 of field osm_id of feature 19632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 293503170 of field osm_id of feature 19633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 295367640 of field osm_id of feature 19634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 295367713 of field osm_id of feature 19635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 296082314 of field osm_id of feature 19636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 296082315 of field osm_id of feature 19637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 296087667 of field osm_id of feature 19638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 297234496 of field osm_id of feature 19639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299080970 of field osm_id of feature 19640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299080971 of field osm_id of feature 19641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299080972 of field osm_id of feature 19642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299080973 of field osm_id of feature 19643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299569771 of field osm_id of feature 19644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 299649613 of field osm_id of feature 19645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 300667852 of field osm_id of feature 19646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301223944 of field osm_id of feature 19647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301309009 of field osm_id of feature 19648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301309009 of field osm_id of feature 19649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301309261 of field osm_id of feature 19650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419552 of field osm_id of feature 19651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419559 of field osm_id of feature 19652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419636 of field osm_id of feature 19653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419637 of field osm_id of feature 19654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419689 of field osm_id of feature 19655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419798 of field osm_id of feature 19656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419809 of field osm_id of feature 19657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419811 of field osm_id of feature 19658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419813 of field osm_id of feature 19659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419816 of field osm_id of feature 19660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301419922 of field osm_id of feature 19661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301433143 of field osm_id of feature 19662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301433219 of field osm_id of feature 19663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301433250 of field osm_id of feature 19664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301433612 of field osm_id of feature 19665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301737325 of field osm_id of feature 19666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301866421 of field osm_id of feature 19667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301866487 of field osm_id of feature 19668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301866488 of field osm_id of feature 19669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301884449 of field osm_id of feature 19670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301884645 of field osm_id of feature 19671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301884794 of field osm_id of feature 19672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301885472 of field osm_id of feature 19673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301885579 of field osm_id of feature 19674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886312 of field osm_id of feature 19675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886353 of field osm_id of feature 19676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886776 of field osm_id of feature 19677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886783 of field osm_id of feature 19678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886826 of field osm_id of feature 19679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301886950 of field osm_id of feature 19680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 301893838 of field osm_id of feature 19681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094680 of field osm_id of feature 19682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094681 of field osm_id of feature 19683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094686 of field osm_id of feature 19684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094690 of field osm_id of feature 19685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094692 of field osm_id of feature 19686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094694 of field osm_id of feature 19687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094695 of field osm_id of feature 19688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094696 of field osm_id of feature 19689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094697 of field osm_id of feature 19690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094698 of field osm_id of feature 19691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094699 of field osm_id of feature 19692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094700 of field osm_id of feature 19693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094701 of field osm_id of feature 19694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094702 of field osm_id of feature 19695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094703 of field osm_id of feature 19696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094704 of field osm_id of feature 19697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094705 of field osm_id of feature 19698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094706 of field osm_id of feature 19699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094707 of field osm_id of feature 19700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094708 of field osm_id of feature 19701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094709 of field osm_id of feature 19702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094710 of field osm_id of feature 19703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094711 of field osm_id of feature 19704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094712 of field osm_id of feature 19705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094713 of field osm_id of feature 19706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094714 of field osm_id of feature 19707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094715 of field osm_id of feature 19708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094716 of field osm_id of feature 19709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094717 of field osm_id of feature 19710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094718 of field osm_id of feature 19711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094719 of field osm_id of feature 19712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302094724 of field osm_id of feature 19713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302095746 of field osm_id of feature 19714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302095770 of field osm_id of feature 19715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302096029 of field osm_id of feature 19716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302359167 of field osm_id of feature 19717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302367556 of field osm_id of feature 19718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302367561 of field osm_id of feature 19719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302367868 of field osm_id of feature 19720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302367956 of field osm_id of feature 19721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302367979 of field osm_id of feature 19722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368286 of field osm_id of feature 19723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368375 of field osm_id of feature 19724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368511 of field osm_id of feature 19725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368555 of field osm_id of feature 19726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368739 of field osm_id of feature 19727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368775 of field osm_id of feature 19728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368776 of field osm_id of feature 19729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368840 of field osm_id of feature 19730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302368842 of field osm_id of feature 19731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984093 of field osm_id of feature 19732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984149 of field osm_id of feature 19733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984174 of field osm_id of feature 19734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984185 of field osm_id of feature 19735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984187 of field osm_id of feature 19736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984220 of field osm_id of feature 19737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984305 of field osm_id of feature 19738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984467 of field osm_id of feature 19739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984468 of field osm_id of feature 19740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 302984469 of field osm_id of feature 19741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 303127156 of field osm_id of feature 19742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 303267054 of field osm_id of feature 19743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 303311928 of field osm_id of feature 19744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 303314681 of field osm_id of feature 19745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172618 of field osm_id of feature 19746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172619 of field osm_id of feature 19747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172620 of field osm_id of feature 19748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172621 of field osm_id of feature 19749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172622 of field osm_id of feature 19750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304172623 of field osm_id of feature 19751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304358376 of field osm_id of feature 19752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304358377 of field osm_id of feature 19753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304358379 of field osm_id of feature 19754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304360321 of field osm_id of feature 19755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304360322 of field osm_id of feature 19756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304393648 of field osm_id of feature 19757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304394651 of field osm_id of feature 19758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304395382 of field osm_id of feature 19759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304396697 of field osm_id of feature 19760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304396717 of field osm_id of feature 19761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304816246 of field osm_id of feature 19762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304816551 of field osm_id of feature 19763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304817128 of field osm_id of feature 19764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304817403 of field osm_id of feature 19765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304817823 of field osm_id of feature 19766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 304918532 of field osm_id of feature 19767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305400886 of field osm_id of feature 19768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305400889 of field osm_id of feature 19769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305406961 of field osm_id of feature 19770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305495650 of field osm_id of feature 19771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305649768 of field osm_id of feature 19772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305865019 of field osm_id of feature 19773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305865021 of field osm_id of feature 19774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305882743 of field osm_id of feature 19775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305882757 of field osm_id of feature 19776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305885087 of field osm_id of feature 19777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305885088 of field osm_id of feature 19778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305885089 of field osm_id of feature 19779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305885090 of field osm_id of feature 19780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305932544 of field osm_id of feature 19781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305932545 of field osm_id of feature 19782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305932567 of field osm_id of feature 19783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305932568 of field osm_id of feature 19784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305933144 of field osm_id of feature 19785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305933168 of field osm_id of feature 19786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935875 of field osm_id of feature 19787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935878 of field osm_id of feature 19788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935880 of field osm_id of feature 19789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935881 of field osm_id of feature 19790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935882 of field osm_id of feature 19791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935884 of field osm_id of feature 19792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935886 of field osm_id of feature 19793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935886 of field osm_id of feature 19794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935894 of field osm_id of feature 19795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935895 of field osm_id of feature 19796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935896 of field osm_id of feature 19797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935897 of field osm_id of feature 19798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305935899 of field osm_id of feature 19799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305948188 of field osm_id of feature 19800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305948189 of field osm_id of feature 19801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950825 of field osm_id of feature 19802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950836 of field osm_id of feature 19803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950842 of field osm_id of feature 19804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950848 of field osm_id of feature 19805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950849 of field osm_id of feature 19806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305950850 of field osm_id of feature 19807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 305985597 of field osm_id of feature 19808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306109280 of field osm_id of feature 19809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306116898 of field osm_id of feature 19810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306116899 of field osm_id of feature 19811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306116900 of field osm_id of feature 19812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306116901 of field osm_id of feature 19813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306119933 of field osm_id of feature 19814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306119934 of field osm_id of feature 19815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306802729 of field osm_id of feature 19816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 306802733 of field osm_id of feature 19817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 307695693 of field osm_id of feature 19818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 307716381 of field osm_id of feature 19819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308020335 of field osm_id of feature 19820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308020337 of field osm_id of feature 19821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308020338 of field osm_id of feature 19822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308063456 of field osm_id of feature 19823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308063769 of field osm_id of feature 19824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308313504 of field osm_id of feature 19825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 308900756 of field osm_id of feature 19826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 309721684 of field osm_id of feature 19827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 310318073 of field osm_id of feature 19828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 310641649 of field osm_id of feature 19829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311264571 of field osm_id of feature 19830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311264571 of field osm_id of feature 19831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311265005 of field osm_id of feature 19832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311265151 of field osm_id of feature 19833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311265513 of field osm_id of feature 19834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311682959 of field osm_id of feature 19835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311682960 of field osm_id of feature 19836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311683265 of field osm_id of feature 19837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311687117 of field osm_id of feature 19838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311718894 of field osm_id of feature 19839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 311783049 of field osm_id of feature 19840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312189471 of field osm_id of feature 19841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312189471 of field osm_id of feature 19842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312189473 of field osm_id of feature 19843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312190492 of field osm_id of feature 19844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312403529 of field osm_id of feature 19845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312704116 of field osm_id of feature 19846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312704117 of field osm_id of feature 19847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312704118 of field osm_id of feature 19848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312704861 of field osm_id of feature 19849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312716421 of field osm_id of feature 19850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312716422 of field osm_id of feature 19851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312716426 of field osm_id of feature 19852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312716432 of field osm_id of feature 19853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312720361 of field osm_id of feature 19854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312722635 of field osm_id of feature 19855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 312722637 of field osm_id of feature 19856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313109830 of field osm_id of feature 19857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313193548 of field osm_id of feature 19858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313194868 of field osm_id of feature 19859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313195118 of field osm_id of feature 19860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313211405 of field osm_id of feature 19861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313211406 of field osm_id of feature 19862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313211407 of field osm_id of feature 19863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313251272 of field osm_id of feature 19864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313251272 of field osm_id of feature 19865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313510736 of field osm_id of feature 19866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313940708 of field osm_id of feature 19867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 313940709 of field osm_id of feature 19868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314214897 of field osm_id of feature 19869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353928 of field osm_id of feature 19870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353929 of field osm_id of feature 19871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353930 of field osm_id of feature 19872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353931 of field osm_id of feature 19873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353931 of field osm_id of feature 19874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353932 of field osm_id of feature 19875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353935 of field osm_id of feature 19876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353936 of field osm_id of feature 19877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353937 of field osm_id of feature 19878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353938 of field osm_id of feature 19879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353941 of field osm_id of feature 19880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353942 of field osm_id of feature 19881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353943 of field osm_id of feature 19882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353945 of field osm_id of feature 19883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314353946 of field osm_id of feature 19884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314354008 of field osm_id of feature 19885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314354009 of field osm_id of feature 19886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314354010 of field osm_id of feature 19887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314354010 of field osm_id of feature 19888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314354011 of field osm_id of feature 19889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355752 of field osm_id of feature 19890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355753 of field osm_id of feature 19891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355753 of field osm_id of feature 19892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355754 of field osm_id of feature 19893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355755 of field osm_id of feature 19894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355756 of field osm_id of feature 19895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314355757 of field osm_id of feature 19896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314385981 of field osm_id of feature 19897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314385983 of field osm_id of feature 19898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314385985 of field osm_id of feature 19899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314385986 of field osm_id of feature 19900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314385988 of field osm_id of feature 19901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314507682 of field osm_id of feature 19902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314507683 of field osm_id of feature 19903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314508409 of field osm_id of feature 19904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314523088 of field osm_id of feature 19905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314524395 of field osm_id of feature 19906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314524396 of field osm_id of feature 19907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314660343 of field osm_id of feature 19908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 314660343 of field osm_id of feature 19909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 315702587 of field osm_id of feature 19910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 315702588 of field osm_id of feature 19911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 315702665 of field osm_id of feature 19912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 315859670 of field osm_id of feature 19913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 315892855 of field osm_id of feature 19914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316209674 of field osm_id of feature 19915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316961418 of field osm_id of feature 19916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966188 of field osm_id of feature 19917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966189 of field osm_id of feature 19918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966190 of field osm_id of feature 19919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966192 of field osm_id of feature 19920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966198 of field osm_id of feature 19921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966201 of field osm_id of feature 19922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966202 of field osm_id of feature 19923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966204 of field osm_id of feature 19924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 316966205 of field osm_id of feature 19925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318614868 of field osm_id of feature 19926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742767 of field osm_id of feature 19927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742768 of field osm_id of feature 19928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742770 of field osm_id of feature 19929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742773 of field osm_id of feature 19930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742773 of field osm_id of feature 19931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742774 of field osm_id of feature 19932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742774 of field osm_id of feature 19933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318742775 of field osm_id of feature 19934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 318762087 of field osm_id of feature 19935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 322246997 of field osm_id of feature 19936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 322247437 of field osm_id of feature 19937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 322249384 of field osm_id of feature 19938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 322249384 of field osm_id of feature 19939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 323172623 of field osm_id of feature 19940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 323172626 of field osm_id of feature 19941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324116097 of field osm_id of feature 19942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324749651 of field osm_id of feature 19943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324749652 of field osm_id of feature 19944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324749653 of field osm_id of feature 19945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324749655 of field osm_id of feature 19946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 324749658 of field osm_id of feature 19947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024302 of field osm_id of feature 19948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024303 of field osm_id of feature 19949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024304 of field osm_id of feature 19950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024306 of field osm_id of feature 19951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024307 of field osm_id of feature 19952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024308 of field osm_id of feature 19953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024309 of field osm_id of feature 19954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024310 of field osm_id of feature 19955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024311 of field osm_id of feature 19956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024312 of field osm_id of feature 19957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024313 of field osm_id of feature 19958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024314 of field osm_id of feature 19959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024315 of field osm_id of feature 19960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024316 of field osm_id of feature 19961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024317 of field osm_id of feature 19962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024318 of field osm_id of feature 19963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024320 of field osm_id of feature 19964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024321 of field osm_id of feature 19965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024322 of field osm_id of feature 19966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024323 of field osm_id of feature 19967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024324 of field osm_id of feature 19968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024325 of field osm_id of feature 19969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024326 of field osm_id of feature 19970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024327 of field osm_id of feature 19971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024328 of field osm_id of feature 19972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024329 of field osm_id of feature 19973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024330 of field osm_id of feature 19974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024331 of field osm_id of feature 19975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024334 of field osm_id of feature 19976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024339 of field osm_id of feature 19977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024340 of field osm_id of feature 19978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024341 of field osm_id of feature 19979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024342 of field osm_id of feature 19980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024343 of field osm_id of feature 19981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024344 of field osm_id of feature 19982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024345 of field osm_id of feature 19983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024346 of field osm_id of feature 19984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024347 of field osm_id of feature 19985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325024348 of field osm_id of feature 19986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325598168 of field osm_id of feature 19987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897189 of field osm_id of feature 19988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897193 of field osm_id of feature 19989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897250 of field osm_id of feature 19990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897252 of field osm_id of feature 19991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897254 of field osm_id of feature 19992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897255 of field osm_id of feature 19993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897256 of field osm_id of feature 19994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897257 of field osm_id of feature 19995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897260 of field osm_id of feature 19996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897261 of field osm_id of feature 19997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897262 of field osm_id of feature 19998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897263 of field osm_id of feature 19999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897266 of field osm_id of feature 20000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897271 of field osm_id of feature 20001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897276 of field osm_id of feature 20002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897279 of field osm_id of feature 20003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897289 of field osm_id of feature 20004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897292 of field osm_id of feature 20005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897295 of field osm_id of feature 20006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897296 of field osm_id of feature 20007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897298 of field osm_id of feature 20008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897299 of field osm_id of feature 20009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897300 of field osm_id of feature 20010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897301 of field osm_id of feature 20011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897302 of field osm_id of feature 20012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897304 of field osm_id of feature 20013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897305 of field osm_id of feature 20014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897308 of field osm_id of feature 20015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897311 of field osm_id of feature 20016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897321 of field osm_id of feature 20017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897322 of field osm_id of feature 20018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897325 of field osm_id of feature 20019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897327 of field osm_id of feature 20020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897332 of field osm_id of feature 20021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897341 of field osm_id of feature 20022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897342 of field osm_id of feature 20023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897344 of field osm_id of feature 20024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897347 of field osm_id of feature 20025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897355 of field osm_id of feature 20026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897359 of field osm_id of feature 20027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897363 of field osm_id of feature 20028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897368 of field osm_id of feature 20029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897378 of field osm_id of feature 20030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897388 of field osm_id of feature 20031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897389 of field osm_id of feature 20032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897390 of field osm_id of feature 20033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897391 of field osm_id of feature 20034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897394 of field osm_id of feature 20035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897397 of field osm_id of feature 20036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 325897399 of field osm_id of feature 20037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 326926569 of field osm_id of feature 20038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 327016279 of field osm_id of feature 20039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 327669046 of field osm_id of feature 20040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 327669048 of field osm_id of feature 20041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 327670749 of field osm_id of feature 20042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 327670751 of field osm_id of feature 20043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 328266307 of field osm_id of feature 20044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 328266308 of field osm_id of feature 20045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 328266317 of field osm_id of feature 20046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 328266320 of field osm_id of feature 20047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 328324721 of field osm_id of feature 20048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 330213759 of field osm_id of feature 20049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 330213760 of field osm_id of feature 20050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 330213981 of field osm_id of feature 20051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 330230340 of field osm_id of feature 20052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 333374585 of field osm_id of feature 20053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 333374586 of field osm_id of feature 20054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 334114486 of field osm_id of feature 20055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 336805437 of field osm_id of feature 20056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 336805438 of field osm_id of feature 20057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 338614817 of field osm_id of feature 20058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 339630523 of field osm_id of feature 20059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 340456155 of field osm_id of feature 20060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343056670 of field osm_id of feature 20061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343056671 of field osm_id of feature 20062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343075622 of field osm_id of feature 20063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343077394 of field osm_id of feature 20064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343077395 of field osm_id of feature 20065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343851634 of field osm_id of feature 20066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 343855105 of field osm_id of feature 20067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 345467559 of field osm_id of feature 20068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 345557645 of field osm_id of feature 20069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 345558205 of field osm_id of feature 20070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 345558998 of field osm_id of feature 20071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 345837475 of field osm_id of feature 20072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349188711 of field osm_id of feature 20073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349188712 of field osm_id of feature 20074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349188712 of field osm_id of feature 20075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349188713 of field osm_id of feature 20076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349188714 of field osm_id of feature 20077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349195692 of field osm_id of feature 20078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390438 of field osm_id of feature 20079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390439 of field osm_id of feature 20080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390440 of field osm_id of feature 20081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390444 of field osm_id of feature 20082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390468 of field osm_id of feature 20083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390470 of field osm_id of feature 20084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390472 of field osm_id of feature 20085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349390477 of field osm_id of feature 20086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349413652 of field osm_id of feature 20087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349416402 of field osm_id of feature 20088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477646 of field osm_id of feature 20089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477647 of field osm_id of feature 20090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477648 of field osm_id of feature 20091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477648 of field osm_id of feature 20092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477649 of field osm_id of feature 20093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477651 of field osm_id of feature 20094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477651 of field osm_id of feature 20095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477652 of field osm_id of feature 20096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477652 of field osm_id of feature 20097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477654 of field osm_id of feature 20098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477655 of field osm_id of feature 20099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477656 of field osm_id of feature 20100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477657 of field osm_id of feature 20101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477658 of field osm_id of feature 20102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477659 of field osm_id of feature 20103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477660 of field osm_id of feature 20104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477661 of field osm_id of feature 20105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477662 of field osm_id of feature 20106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477665 of field osm_id of feature 20107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477667 of field osm_id of feature 20108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477670 of field osm_id of feature 20109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477672 of field osm_id of feature 20110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477675 of field osm_id of feature 20111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477678 of field osm_id of feature 20112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477681 of field osm_id of feature 20113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477684 of field osm_id of feature 20114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477686 of field osm_id of feature 20115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477688 of field osm_id of feature 20116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477692 of field osm_id of feature 20117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477694 of field osm_id of feature 20118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477697 of field osm_id of feature 20119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477699 of field osm_id of feature 20120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477701 of field osm_id of feature 20121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477704 of field osm_id of feature 20122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477706 of field osm_id of feature 20123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477708 of field osm_id of feature 20124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477709 of field osm_id of feature 20125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477710 of field osm_id of feature 20126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477711 of field osm_id of feature 20127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477712 of field osm_id of feature 20128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477717 of field osm_id of feature 20129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477741 of field osm_id of feature 20130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477745 of field osm_id of feature 20131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477748 of field osm_id of feature 20132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477751 of field osm_id of feature 20133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477751 of field osm_id of feature 20134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477755 of field osm_id of feature 20135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477755 of field osm_id of feature 20136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477755 of field osm_id of feature 20137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477757 of field osm_id of feature 20138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477761 of field osm_id of feature 20139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477764 of field osm_id of feature 20140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477767 of field osm_id of feature 20141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477767 of field osm_id of feature 20142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477769 of field osm_id of feature 20143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477772 of field osm_id of feature 20144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477772 of field osm_id of feature 20145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477776 of field osm_id of feature 20146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477780 of field osm_id of feature 20147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477785 of field osm_id of feature 20148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477790 of field osm_id of feature 20149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477798 of field osm_id of feature 20150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477803 of field osm_id of feature 20151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477806 of field osm_id of feature 20152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477808 of field osm_id of feature 20153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477810 of field osm_id of feature 20154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477813 of field osm_id of feature 20155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477816 of field osm_id of feature 20156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477820 of field osm_id of feature 20157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477823 of field osm_id of feature 20158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477828 of field osm_id of feature 20159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349477878 of field osm_id of feature 20160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482664 of field osm_id of feature 20161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482665 of field osm_id of feature 20162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482666 of field osm_id of feature 20163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482667 of field osm_id of feature 20164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482668 of field osm_id of feature 20165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349482669 of field osm_id of feature 20166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349488438 of field osm_id of feature 20167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349488440 of field osm_id of feature 20168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349526968 of field osm_id of feature 20169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349526969 of field osm_id of feature 20170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349526970 of field osm_id of feature 20171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530740 of field osm_id of feature 20172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530744 of field osm_id of feature 20173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530744 of field osm_id of feature 20174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530745 of field osm_id of feature 20175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530746 of field osm_id of feature 20176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349530747 of field osm_id of feature 20177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349537833 of field osm_id of feature 20178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349537835 of field osm_id of feature 20179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349537839 of field osm_id of feature 20180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349537844 of field osm_id of feature 20181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349940305 of field osm_id of feature 20182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 349940308 of field osm_id of feature 20183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350345285 of field osm_id of feature 20184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350345286 of field osm_id of feature 20185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350351312 of field osm_id of feature 20186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350351313 of field osm_id of feature 20187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350351314 of field osm_id of feature 20188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 350351316 of field osm_id of feature 20189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305493 of field osm_id of feature 20190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305493 of field osm_id of feature 20191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305494 of field osm_id of feature 20192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305495 of field osm_id of feature 20193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305508 of field osm_id of feature 20194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305508 of field osm_id of feature 20195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305509 of field osm_id of feature 20196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305510 of field osm_id of feature 20197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351305511 of field osm_id of feature 20198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 351310948 of field osm_id of feature 20199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 352013787 of field osm_id of feature 20200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353462526 of field osm_id of feature 20201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353463517 of field osm_id of feature 20202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353468421 of field osm_id of feature 20203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353468727 of field osm_id of feature 20204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353574238 of field osm_id of feature 20205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353574239 of field osm_id of feature 20206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353574245 of field osm_id of feature 20207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353574268 of field osm_id of feature 20208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353574269 of field osm_id of feature 20209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 353855433 of field osm_id of feature 20210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354025261 of field osm_id of feature 20211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354025261 of field osm_id of feature 20212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354025262 of field osm_id of feature 20213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354025263 of field osm_id of feature 20214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354025264 of field osm_id of feature 20215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210464 of field osm_id of feature 20216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210467 of field osm_id of feature 20217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210467 of field osm_id of feature 20218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210469 of field osm_id of feature 20219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210470 of field osm_id of feature 20220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354210471 of field osm_id of feature 20221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354271495 of field osm_id of feature 20222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354340127 of field osm_id of feature 20223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354340725 of field osm_id of feature 20224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354884775 of field osm_id of feature 20225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354884776 of field osm_id of feature 20226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 354887309 of field osm_id of feature 20227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 355908770 of field osm_id of feature 20228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 355918634 of field osm_id of feature 20229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 356605319 of field osm_id of feature 20230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 356605320 of field osm_id of feature 20231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462341 of field osm_id of feature 20232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462359 of field osm_id of feature 20233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462393 of field osm_id of feature 20234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462403 of field osm_id of feature 20235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462409 of field osm_id of feature 20236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462411 of field osm_id of feature 20237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462413 of field osm_id of feature 20238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462417 of field osm_id of feature 20239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358462419 of field osm_id of feature 20240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569919 of field osm_id of feature 20241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569920 of field osm_id of feature 20242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569921 of field osm_id of feature 20243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569921 of field osm_id of feature 20244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569922 of field osm_id of feature 20245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569938 of field osm_id of feature 20246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358569938 of field osm_id of feature 20247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358645124 of field osm_id of feature 20248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358794927 of field osm_id of feature 20249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358795578 of field osm_id of feature 20250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358796540 of field osm_id of feature 20251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358796542 of field osm_id of feature 20252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 358796842 of field osm_id of feature 20253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 360771246 of field osm_id of feature 20254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 360825455 of field osm_id of feature 20255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361797989 of field osm_id of feature 20256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361797990 of field osm_id of feature 20257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361808016 of field osm_id of feature 20258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361862401 of field osm_id of feature 20259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361862402 of field osm_id of feature 20260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 361862402 of field osm_id of feature 20261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362033677 of field osm_id of feature 20262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362033679 of field osm_id of feature 20263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362033679 of field osm_id of feature 20264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362213611 of field osm_id of feature 20265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362500866 of field osm_id of feature 20266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362500969 of field osm_id of feature 20267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 362500969 of field osm_id of feature 20268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 363100864 of field osm_id of feature 20269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 363101735 of field osm_id of feature 20270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 363693982 of field osm_id of feature 20271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 363995065 of field osm_id of feature 20272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364083727 of field osm_id of feature 20273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364447322 of field osm_id of feature 20274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448429 of field osm_id of feature 20275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448455 of field osm_id of feature 20276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448577 of field osm_id of feature 20277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448578 of field osm_id of feature 20278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448587 of field osm_id of feature 20279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448682 of field osm_id of feature 20280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364448683 of field osm_id of feature 20281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364545934 of field osm_id of feature 20282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364546142 of field osm_id of feature 20283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364546143 of field osm_id of feature 20284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 364546184 of field osm_id of feature 20285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 365594548 of field osm_id of feature 20286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 365594549 of field osm_id of feature 20287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 366762937 of field osm_id of feature 20288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 367232398 of field osm_id of feature 20289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 368007657 of field osm_id of feature 20290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 368007661 of field osm_id of feature 20291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 368007664 of field osm_id of feature 20292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 368234825 of field osm_id of feature 20293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 368722404 of field osm_id of feature 20294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369032100 of field osm_id of feature 20295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369032292 of field osm_id of feature 20296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369049123 of field osm_id of feature 20297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369049124 of field osm_id of feature 20298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369050720 of field osm_id of feature 20299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369324018 of field osm_id of feature 20300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369332258 of field osm_id of feature 20301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369387600 of field osm_id of feature 20302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369387602 of field osm_id of feature 20303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369389558 of field osm_id of feature 20304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369389560 of field osm_id of feature 20305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369448880 of field osm_id of feature 20306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369466053 of field osm_id of feature 20307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369466339 of field osm_id of feature 20308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369467187 of field osm_id of feature 20309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369467188 of field osm_id of feature 20310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369467233 of field osm_id of feature 20311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369519209 of field osm_id of feature 20312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369519210 of field osm_id of feature 20313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369643714 of field osm_id of feature 20314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369688521 of field osm_id of feature 20315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369688985 of field osm_id of feature 20316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369688986 of field osm_id of feature 20317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369728431 of field osm_id of feature 20318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369728431 of field osm_id of feature 20319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369728432 of field osm_id of feature 20320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369912564 of field osm_id of feature 20321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369912565 of field osm_id of feature 20322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369912566 of field osm_id of feature 20323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 369912567 of field osm_id of feature 20324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370286048 of field osm_id of feature 20325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370287871 of field osm_id of feature 20326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372731 of field osm_id of feature 20327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372732 of field osm_id of feature 20328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372733 of field osm_id of feature 20329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372734 of field osm_id of feature 20330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372735 of field osm_id of feature 20331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372736 of field osm_id of feature 20332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372737 of field osm_id of feature 20333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372737 of field osm_id of feature 20334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372738 of field osm_id of feature 20335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372739 of field osm_id of feature 20336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372739 of field osm_id of feature 20337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372740 of field osm_id of feature 20338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372740 of field osm_id of feature 20339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372741 of field osm_id of feature 20340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372741 of field osm_id of feature 20341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372742 of field osm_id of feature 20342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372743 of field osm_id of feature 20343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372745 of field osm_id of feature 20344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372746 of field osm_id of feature 20345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372747 of field osm_id of feature 20346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372756 of field osm_id of feature 20347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372758 of field osm_id of feature 20348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370372759 of field osm_id of feature 20349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370373735 of field osm_id of feature 20350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370409570 of field osm_id of feature 20351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370409572 of field osm_id of feature 20352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370410645 of field osm_id of feature 20353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370410783 of field osm_id of feature 20354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 370410784 of field osm_id of feature 20355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 371300763 of field osm_id of feature 20356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072199 of field osm_id of feature 20357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072205 of field osm_id of feature 20358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072206 of field osm_id of feature 20359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072211 of field osm_id of feature 20360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072211 of field osm_id of feature 20361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072212 of field osm_id of feature 20362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072231 of field osm_id of feature 20363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372072360 of field osm_id of feature 20364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372165965 of field osm_id of feature 20365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372170004 of field osm_id of feature 20366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 372170004 of field osm_id of feature 20367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 373775760 of field osm_id of feature 20368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 374231878 of field osm_id of feature 20369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 374431380 of field osm_id of feature 20370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 374643708 of field osm_id of feature 20371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 375092095 of field osm_id of feature 20372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 375211819 of field osm_id of feature 20373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 375698400 of field osm_id of feature 20374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 375699922 of field osm_id of feature 20375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 375699923 of field osm_id of feature 20376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376102152 of field osm_id of feature 20377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376619715 of field osm_id of feature 20378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376619716 of field osm_id of feature 20379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376619716 of field osm_id of feature 20380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376922147 of field osm_id of feature 20381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 376992928 of field osm_id of feature 20382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 377860680 of field osm_id of feature 20383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 377860681 of field osm_id of feature 20384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 378644147 of field osm_id of feature 20385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 378644148 of field osm_id of feature 20386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 379906255 of field osm_id of feature 20387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 379906256 of field osm_id of feature 20388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380358520 of field osm_id of feature 20389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380508308 of field osm_id of feature 20390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380510039 of field osm_id of feature 20391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380518640 of field osm_id of feature 20392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380519864 of field osm_id of feature 20393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380519865 of field osm_id of feature 20394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380698194 of field osm_id of feature 20395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380698805 of field osm_id of feature 20396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380698806 of field osm_id of feature 20397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380710424 of field osm_id of feature 20398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 380710425 of field osm_id of feature 20399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381418963 of field osm_id of feature 20400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381418964 of field osm_id of feature 20401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381418970 of field osm_id of feature 20402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381418973 of field osm_id of feature 20403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419234 of field osm_id of feature 20404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419461 of field osm_id of feature 20405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419462 of field osm_id of feature 20406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419679 of field osm_id of feature 20407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419680 of field osm_id of feature 20408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419681 of field osm_id of feature 20409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381419682 of field osm_id of feature 20410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381768798 of field osm_id of feature 20411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 381768799 of field osm_id of feature 20412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382180352 of field osm_id of feature 20413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382901936 of field osm_id of feature 20414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382901938 of field osm_id of feature 20415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382901940 of field osm_id of feature 20416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382901943 of field osm_id of feature 20417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908526 of field osm_id of feature 20418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908528 of field osm_id of feature 20419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908532 of field osm_id of feature 20420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908533 of field osm_id of feature 20421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908535 of field osm_id of feature 20422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908536 of field osm_id of feature 20423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908538 of field osm_id of feature 20424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908539 of field osm_id of feature 20425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908540 of field osm_id of feature 20426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 382908541 of field osm_id of feature 20427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383203969 of field osm_id of feature 20428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383203970 of field osm_id of feature 20429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209580 of field osm_id of feature 20430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209581 of field osm_id of feature 20431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209582 of field osm_id of feature 20432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209583 of field osm_id of feature 20433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209584 of field osm_id of feature 20434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209587 of field osm_id of feature 20435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209588 of field osm_id of feature 20436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209589 of field osm_id of feature 20437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209590 of field osm_id of feature 20438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209591 of field osm_id of feature 20439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383209592 of field osm_id of feature 20440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249794 of field osm_id of feature 20441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249800 of field osm_id of feature 20442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249801 of field osm_id of feature 20443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249802 of field osm_id of feature 20444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249803 of field osm_id of feature 20445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249804 of field osm_id of feature 20446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249805 of field osm_id of feature 20447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249806 of field osm_id of feature 20448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383249808 of field osm_id of feature 20449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281843 of field osm_id of feature 20450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281844 of field osm_id of feature 20451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281845 of field osm_id of feature 20452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281846 of field osm_id of feature 20453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281847 of field osm_id of feature 20454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281848 of field osm_id of feature 20455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281849 of field osm_id of feature 20456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281850 of field osm_id of feature 20457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281851 of field osm_id of feature 20458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281852 of field osm_id of feature 20459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281853 of field osm_id of feature 20460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281854 of field osm_id of feature 20461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281855 of field osm_id of feature 20462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281856 of field osm_id of feature 20463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281857 of field osm_id of feature 20464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281858 of field osm_id of feature 20465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281859 of field osm_id of feature 20466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281860 of field osm_id of feature 20467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281861 of field osm_id of feature 20468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281862 of field osm_id of feature 20469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281863 of field osm_id of feature 20470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281864 of field osm_id of feature 20471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281865 of field osm_id of feature 20472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281866 of field osm_id of feature 20473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281867 of field osm_id of feature 20474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281868 of field osm_id of feature 20475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281869 of field osm_id of feature 20476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281870 of field osm_id of feature 20477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281871 of field osm_id of feature 20478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281872 of field osm_id of feature 20479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281873 of field osm_id of feature 20480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281873 of field osm_id of feature 20481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281874 of field osm_id of feature 20482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281878 of field osm_id of feature 20483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281879 of field osm_id of feature 20484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281881 of field osm_id of feature 20485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281882 of field osm_id of feature 20486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281883 of field osm_id of feature 20487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281884 of field osm_id of feature 20488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281885 of field osm_id of feature 20489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281887 of field osm_id of feature 20490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281888 of field osm_id of feature 20491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281889 of field osm_id of feature 20492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281890 of field osm_id of feature 20493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281891 of field osm_id of feature 20494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281892 of field osm_id of feature 20495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281893 of field osm_id of feature 20496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281894 of field osm_id of feature 20497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281895 of field osm_id of feature 20498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281896 of field osm_id of feature 20499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281897 of field osm_id of feature 20500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281899 of field osm_id of feature 20501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281900 of field osm_id of feature 20502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383281901 of field osm_id of feature 20503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286528 of field osm_id of feature 20504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286530 of field osm_id of feature 20505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286532 of field osm_id of feature 20506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286534 of field osm_id of feature 20507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286534 of field osm_id of feature 20508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286536 of field osm_id of feature 20509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286539 of field osm_id of feature 20510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286540 of field osm_id of feature 20511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286542 of field osm_id of feature 20512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286544 of field osm_id of feature 20513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383286546 of field osm_id of feature 20514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365016 of field osm_id of feature 20515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365017 of field osm_id of feature 20516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365018 of field osm_id of feature 20517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365019 of field osm_id of feature 20518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365020 of field osm_id of feature 20519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365021 of field osm_id of feature 20520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365022 of field osm_id of feature 20521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365023 of field osm_id of feature 20522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365024 of field osm_id of feature 20523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365025 of field osm_id of feature 20524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365026 of field osm_id of feature 20525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365028 of field osm_id of feature 20526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365028 of field osm_id of feature 20527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365029 of field osm_id of feature 20528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365029 of field osm_id of feature 20529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365030 of field osm_id of feature 20530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365031 of field osm_id of feature 20531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365032 of field osm_id of feature 20532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383365033 of field osm_id of feature 20533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372415 of field osm_id of feature 20534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372415 of field osm_id of feature 20535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372416 of field osm_id of feature 20536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372417 of field osm_id of feature 20537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372417 of field osm_id of feature 20538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372418 of field osm_id of feature 20539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372419 of field osm_id of feature 20540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372420 of field osm_id of feature 20541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372420 of field osm_id of feature 20542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372421 of field osm_id of feature 20543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372421 of field osm_id of feature 20544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372422 of field osm_id of feature 20545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372423 of field osm_id of feature 20546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372424 of field osm_id of feature 20547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372425 of field osm_id of feature 20548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372426 of field osm_id of feature 20549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372427 of field osm_id of feature 20550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372428 of field osm_id of feature 20551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372429 of field osm_id of feature 20552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372430 of field osm_id of feature 20553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372431 of field osm_id of feature 20554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372431 of field osm_id of feature 20555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372432 of field osm_id of feature 20556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372432 of field osm_id of feature 20557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372433 of field osm_id of feature 20558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372434 of field osm_id of feature 20559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372435 of field osm_id of feature 20560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372436 of field osm_id of feature 20561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372437 of field osm_id of feature 20562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372438 of field osm_id of feature 20563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383372439 of field osm_id of feature 20564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384441 of field osm_id of feature 20565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384442 of field osm_id of feature 20566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384443 of field osm_id of feature 20567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384444 of field osm_id of feature 20568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384445 of field osm_id of feature 20569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384446 of field osm_id of feature 20570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384447 of field osm_id of feature 20571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384448 of field osm_id of feature 20572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384449 of field osm_id of feature 20573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383384450 of field osm_id of feature 20574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383390940 of field osm_id of feature 20575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383390941 of field osm_id of feature 20576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383390942 of field osm_id of feature 20577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383390943 of field osm_id of feature 20578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445412 of field osm_id of feature 20579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445413 of field osm_id of feature 20580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445414 of field osm_id of feature 20581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445415 of field osm_id of feature 20582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445416 of field osm_id of feature 20583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383445417 of field osm_id of feature 20584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383986618 of field osm_id of feature 20585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 383986799 of field osm_id of feature 20586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384133689 of field osm_id of feature 20587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384166980 of field osm_id of feature 20588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384167176 of field osm_id of feature 20589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384167177 of field osm_id of feature 20590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384167178 of field osm_id of feature 20591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384167179 of field osm_id of feature 20592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384254631 of field osm_id of feature 20593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384254687 of field osm_id of feature 20594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384254693 of field osm_id of feature 20595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384254735 of field osm_id of feature 20596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384324591 of field osm_id of feature 20597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 384324776 of field osm_id of feature 20598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 385063950 of field osm_id of feature 20599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 385063951 of field osm_id of feature 20600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 385064936 of field osm_id of feature 20601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 385064937 of field osm_id of feature 20602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 385669075 of field osm_id of feature 20603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387042260 of field osm_id of feature 20604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387042262 of field osm_id of feature 20605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387042264 of field osm_id of feature 20606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387045690 of field osm_id of feature 20607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387106334 of field osm_id of feature 20608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387148272 of field osm_id of feature 20609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265171 of field osm_id of feature 20610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265251 of field osm_id of feature 20611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265370 of field osm_id of feature 20612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265414 of field osm_id of feature 20613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265585 of field osm_id of feature 20614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387265586 of field osm_id of feature 20615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387269423 of field osm_id of feature 20616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 387797119 of field osm_id of feature 20617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388180693 of field osm_id of feature 20618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388180802 of field osm_id of feature 20619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388268876 of field osm_id of feature 20620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388268877 of field osm_id of feature 20621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388268878 of field osm_id of feature 20622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388268879 of field osm_id of feature 20623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 388354734 of field osm_id of feature 20624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389069642 of field osm_id of feature 20625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389084378 of field osm_id of feature 20626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389084381 of field osm_id of feature 20627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389084382 of field osm_id of feature 20628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389137324 of field osm_id of feature 20629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389137325 of field osm_id of feature 20630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389137327 of field osm_id of feature 20631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389214434 of field osm_id of feature 20632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389214434 of field osm_id of feature 20633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389324984 of field osm_id of feature 20634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389324985 of field osm_id of feature 20635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389329257 of field osm_id of feature 20636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389366168 of field osm_id of feature 20637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389530363 of field osm_id of feature 20638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389530365 of field osm_id of feature 20639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 389657289 of field osm_id of feature 20640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390171484 of field osm_id of feature 20641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390171485 of field osm_id of feature 20642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390553512 of field osm_id of feature 20643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390553862 of field osm_id of feature 20644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390777716 of field osm_id of feature 20645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390867308 of field osm_id of feature 20646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390867309 of field osm_id of feature 20647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390867310 of field osm_id of feature 20648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390867686 of field osm_id of feature 20649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390869280 of field osm_id of feature 20650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390869281 of field osm_id of feature 20651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390884842 of field osm_id of feature 20652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390884843 of field osm_id of feature 20653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390893173 of field osm_id of feature 20654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390894636 of field osm_id of feature 20655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390897197 of field osm_id of feature 20656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 390897198 of field osm_id of feature 20657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007703 of field osm_id of feature 20658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007704 of field osm_id of feature 20659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007705 of field osm_id of feature 20660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007706 of field osm_id of feature 20661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007707 of field osm_id of feature 20662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007708 of field osm_id of feature 20663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007709 of field osm_id of feature 20664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007710 of field osm_id of feature 20665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007711 of field osm_id of feature 20666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007712 of field osm_id of feature 20667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007713 of field osm_id of feature 20668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007714 of field osm_id of feature 20669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007715 of field osm_id of feature 20670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007716 of field osm_id of feature 20671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007717 of field osm_id of feature 20672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007718 of field osm_id of feature 20673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007719 of field osm_id of feature 20674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007720 of field osm_id of feature 20675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007721 of field osm_id of feature 20676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007722 of field osm_id of feature 20677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007724 of field osm_id of feature 20678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007725 of field osm_id of feature 20679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007726 of field osm_id of feature 20680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007727 of field osm_id of feature 20681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007728 of field osm_id of feature 20682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007729 of field osm_id of feature 20683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007730 of field osm_id of feature 20684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007732 of field osm_id of feature 20685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007733 of field osm_id of feature 20686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007734 of field osm_id of feature 20687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007735 of field osm_id of feature 20688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007736 of field osm_id of feature 20689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007737 of field osm_id of feature 20690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007738 of field osm_id of feature 20691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007739 of field osm_id of feature 20692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007740 of field osm_id of feature 20693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007741 of field osm_id of feature 20694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007742 of field osm_id of feature 20695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007743 of field osm_id of feature 20696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007744 of field osm_id of feature 20697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007745 of field osm_id of feature 20698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007746 of field osm_id of feature 20699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007747 of field osm_id of feature 20700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007748 of field osm_id of feature 20701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007749 of field osm_id of feature 20702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007750 of field osm_id of feature 20703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007750 of field osm_id of feature 20704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007751 of field osm_id of feature 20705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007752 of field osm_id of feature 20706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007753 of field osm_id of feature 20707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007753 of field osm_id of feature 20708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007754 of field osm_id of feature 20709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007754 of field osm_id of feature 20710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391007755 of field osm_id of feature 20711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040066 of field osm_id of feature 20712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040068 of field osm_id of feature 20713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040068 of field osm_id of feature 20714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040069 of field osm_id of feature 20715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040070 of field osm_id of feature 20716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040070 of field osm_id of feature 20717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040071 of field osm_id of feature 20718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040072 of field osm_id of feature 20719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040074 of field osm_id of feature 20720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040074 of field osm_id of feature 20721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040075 of field osm_id of feature 20722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040076 of field osm_id of feature 20723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040077 of field osm_id of feature 20724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391040078 of field osm_id of feature 20725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050885 of field osm_id of feature 20726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050886 of field osm_id of feature 20727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050891 of field osm_id of feature 20728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050892 of field osm_id of feature 20729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050893 of field osm_id of feature 20730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050894 of field osm_id of feature 20731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050895 of field osm_id of feature 20732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391050895 of field osm_id of feature 20733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192070 of field osm_id of feature 20734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192071 of field osm_id of feature 20735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192072 of field osm_id of feature 20736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192073 of field osm_id of feature 20737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192074 of field osm_id of feature 20738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192075 of field osm_id of feature 20739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192076 of field osm_id of feature 20740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192077 of field osm_id of feature 20741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391192078 of field osm_id of feature 20742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391259875 of field osm_id of feature 20743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391259876 of field osm_id of feature 20744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391434120 of field osm_id of feature 20745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391434121 of field osm_id of feature 20746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391435866 of field osm_id of feature 20747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391445529 of field osm_id of feature 20748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 391445530 of field osm_id of feature 20749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032326 of field osm_id of feature 20750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032427 of field osm_id of feature 20751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032428 of field osm_id of feature 20752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032432 of field osm_id of feature 20753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032433 of field osm_id of feature 20754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032434 of field osm_id of feature 20755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032435 of field osm_id of feature 20756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032436 of field osm_id of feature 20757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032437 of field osm_id of feature 20758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392032439 of field osm_id of feature 20759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035164 of field osm_id of feature 20760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035165 of field osm_id of feature 20761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035166 of field osm_id of feature 20762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035167 of field osm_id of feature 20763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035168 of field osm_id of feature 20764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392035169 of field osm_id of feature 20765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392041403 of field osm_id of feature 20766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392815172 of field osm_id of feature 20767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392937412 of field osm_id of feature 20768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392937412 of field osm_id of feature 20769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392942678 of field osm_id of feature 20770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 392942678 of field osm_id of feature 20771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 393002856 of field osm_id of feature 20772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 393297067 of field osm_id of feature 20773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 393943068 of field osm_id of feature 20774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394514798 of field osm_id of feature 20775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394514799 of field osm_id of feature 20776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394514800 of field osm_id of feature 20777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394514801 of field osm_id of feature 20778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394689780 of field osm_id of feature 20779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394689781 of field osm_id of feature 20780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394867272 of field osm_id of feature 20781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 394867273 of field osm_id of feature 20782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395058735 of field osm_id of feature 20783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395058738 of field osm_id of feature 20784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395058740 of field osm_id of feature 20785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395062441 of field osm_id of feature 20786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395065443 of field osm_id of feature 20787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395069477 of field osm_id of feature 20788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395073901 of field osm_id of feature 20789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395361387 of field osm_id of feature 20790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395443687 of field osm_id of feature 20791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395443688 of field osm_id of feature 20792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395443689 of field osm_id of feature 20793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395443690 of field osm_id of feature 20794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395677192 of field osm_id of feature 20795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395677193 of field osm_id of feature 20796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395801435 of field osm_id of feature 20797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395801436 of field osm_id of feature 20798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395801437 of field osm_id of feature 20799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 395918395 of field osm_id of feature 20800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396001257 of field osm_id of feature 20801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396001258 of field osm_id of feature 20802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396001259 of field osm_id of feature 20803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336404 of field osm_id of feature 20804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336405 of field osm_id of feature 20805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336407 of field osm_id of feature 20806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336408 of field osm_id of feature 20807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336409 of field osm_id of feature 20808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336409 of field osm_id of feature 20809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336410 of field osm_id of feature 20810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336411 of field osm_id of feature 20811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336412 of field osm_id of feature 20812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336413 of field osm_id of feature 20813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336414 of field osm_id of feature 20814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336415 of field osm_id of feature 20815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336415 of field osm_id of feature 20816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336416 of field osm_id of feature 20817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336417 of field osm_id of feature 20818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336418 of field osm_id of feature 20819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336418 of field osm_id of feature 20820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336419 of field osm_id of feature 20821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336419 of field osm_id of feature 20822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336420 of field osm_id of feature 20823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336421 of field osm_id of feature 20824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336422 of field osm_id of feature 20825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 396336423 of field osm_id of feature 20826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397219583 of field osm_id of feature 20827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426415 of field osm_id of feature 20828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426416 of field osm_id of feature 20829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426418 of field osm_id of feature 20830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426424 of field osm_id of feature 20831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426427 of field osm_id of feature 20832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426437 of field osm_id of feature 20833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426438 of field osm_id of feature 20834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397426439 of field osm_id of feature 20835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459009 of field osm_id of feature 20836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459099 of field osm_id of feature 20837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459100 of field osm_id of feature 20838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459101 of field osm_id of feature 20839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459103 of field osm_id of feature 20840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459104 of field osm_id of feature 20841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459105 of field osm_id of feature 20842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397459106 of field osm_id of feature 20843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397579048 of field osm_id of feature 20844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397579049 of field osm_id of feature 20845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397579050 of field osm_id of feature 20846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397579051 of field osm_id of feature 20847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397579052 of field osm_id of feature 20848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397586381 of field osm_id of feature 20849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397624468 of field osm_id of feature 20850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397624469 of field osm_id of feature 20851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397764361 of field osm_id of feature 20852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397764362 of field osm_id of feature 20853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397765021 of field osm_id of feature 20854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397765023 of field osm_id of feature 20855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397765025 of field osm_id of feature 20856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397765027 of field osm_id of feature 20857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397796129 of field osm_id of feature 20858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901182 of field osm_id of feature 20859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901183 of field osm_id of feature 20860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901184 of field osm_id of feature 20861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901185 of field osm_id of feature 20862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901186 of field osm_id of feature 20863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901187 of field osm_id of feature 20864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901188 of field osm_id of feature 20865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901190 of field osm_id of feature 20866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901191 of field osm_id of feature 20867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 397901193 of field osm_id of feature 20868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 398075703 of field osm_id of feature 20869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 398116866 of field osm_id of feature 20870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 398273242 of field osm_id of feature 20871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 398273244 of field osm_id of feature 20872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399014340 of field osm_id of feature 20873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399014341 of field osm_id of feature 20874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399014867 of field osm_id of feature 20875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399014873 of field osm_id of feature 20876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399015777 of field osm_id of feature 20877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399015778 of field osm_id of feature 20878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399015780 of field osm_id of feature 20879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399017457 of field osm_id of feature 20880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399017458 of field osm_id of feature 20881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399017462 of field osm_id of feature 20882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399017464 of field osm_id of feature 20883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 399020767 of field osm_id of feature 20884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401101534 of field osm_id of feature 20885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751748 of field osm_id of feature 20886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751750 of field osm_id of feature 20887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751752 of field osm_id of feature 20888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751754 of field osm_id of feature 20889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751757 of field osm_id of feature 20890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 401751759 of field osm_id of feature 20891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 402064195 of field osm_id of feature 20892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 402152455 of field osm_id of feature 20893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 403771377 of field osm_id of feature 20894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 403771760 of field osm_id of feature 20895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 403792297 of field osm_id of feature 20896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 403795727 of field osm_id of feature 20897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 403795728 of field osm_id of feature 20898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 405411656 of field osm_id of feature 20899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 405411657 of field osm_id of feature 20900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 405411657 of field osm_id of feature 20901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 405411658 of field osm_id of feature 20902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 406805620 of field osm_id of feature 20903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 406805623 of field osm_id of feature 20904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 406854699 of field osm_id of feature 20905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 409422029 of field osm_id of feature 20906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411579412 of field osm_id of feature 20907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411890820 of field osm_id of feature 20908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411912213 of field osm_id of feature 20909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411932054 of field osm_id of feature 20910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411932055 of field osm_id of feature 20911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411932056 of field osm_id of feature 20912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411932616 of field osm_id of feature 20913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411933038 of field osm_id of feature 20914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411933074 of field osm_id of feature 20915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 411933898 of field osm_id of feature 20916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 413996808 of field osm_id of feature 20917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 413996809 of field osm_id of feature 20918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 413997731 of field osm_id of feature 20919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 413997732 of field osm_id of feature 20920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414202142 of field osm_id of feature 20921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414218871 of field osm_id of feature 20922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414387884 of field osm_id of feature 20923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414387891 of field osm_id of feature 20924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414387892 of field osm_id of feature 20925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414389350 of field osm_id of feature 20926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 414910309 of field osm_id of feature 20927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 415221553 of field osm_id of feature 20928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549198 of field osm_id of feature 20929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549199 of field osm_id of feature 20930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549200 of field osm_id of feature 20931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549201 of field osm_id of feature 20932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549202 of field osm_id of feature 20933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549203 of field osm_id of feature 20934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549204 of field osm_id of feature 20935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549205 of field osm_id of feature 20936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549206 of field osm_id of feature 20937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549207 of field osm_id of feature 20938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549208 of field osm_id of feature 20939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549209 of field osm_id of feature 20940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549210 of field osm_id of feature 20941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549211 of field osm_id of feature 20942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549212 of field osm_id of feature 20943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549213 of field osm_id of feature 20944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549214 of field osm_id of feature 20945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549215 of field osm_id of feature 20946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549216 of field osm_id of feature 20947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549217 of field osm_id of feature 20948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549218 of field osm_id of feature 20949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549219 of field osm_id of feature 20950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 416549223 of field osm_id of feature 20951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 419654768 of field osm_id of feature 20952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 419654769 of field osm_id of feature 20953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 420003912 of field osm_id of feature 20954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 420004662 of field osm_id of feature 20955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 420004663 of field osm_id of feature 20956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 421579787 of field osm_id of feature 20957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 423288758 of field osm_id of feature 20958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 423298562 of field osm_id of feature 20959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425069532 of field osm_id of feature 20960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425241726 of field osm_id of feature 20961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425243668 of field osm_id of feature 20962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425939597 of field osm_id of feature 20963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425939598 of field osm_id of feature 20964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 425939600 of field osm_id of feature 20965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 426826458 of field osm_id of feature 20966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 427221319 of field osm_id of feature 20967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 427550737 of field osm_id of feature 20968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 427936958 of field osm_id of feature 20969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428124563 of field osm_id of feature 20970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428878461 of field osm_id of feature 20971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428878462 of field osm_id of feature 20972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428878463 of field osm_id of feature 20973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428887212 of field osm_id of feature 20974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897145 of field osm_id of feature 20975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897146 of field osm_id of feature 20976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897148 of field osm_id of feature 20977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897149 of field osm_id of feature 20978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897150 of field osm_id of feature 20979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428897151 of field osm_id of feature 20980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428918383 of field osm_id of feature 20981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428918384 of field osm_id of feature 20982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428918385 of field osm_id of feature 20983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428918387 of field osm_id of feature 20984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 428921402 of field osm_id of feature 20985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429038720 of field osm_id of feature 20986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429038721 of field osm_id of feature 20987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429038722 of field osm_id of feature 20988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429040764 of field osm_id of feature 20989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429040765 of field osm_id of feature 20990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429040766 of field osm_id of feature 20991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429040767 of field osm_id of feature 20992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429048016 of field osm_id of feature 20993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429057531 of field osm_id of feature 20994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429057533 of field osm_id of feature 20995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429057533 of field osm_id of feature 20996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429060637 of field osm_id of feature 20997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429060637 of field osm_id of feature 20998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429060638 of field osm_id of feature 20999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429060639 of field osm_id of feature 21000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429060639 of field osm_id of feature 21001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 429848574 of field osm_id of feature 21002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430737059 of field osm_id of feature 21003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993475 of field osm_id of feature 21004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993476 of field osm_id of feature 21005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993477 of field osm_id of feature 21006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993478 of field osm_id of feature 21007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993479 of field osm_id of feature 21008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 430993480 of field osm_id of feature 21009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 432054127 of field osm_id of feature 21010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 432054128 of field osm_id of feature 21011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 432054129 of field osm_id of feature 21012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 432529026 of field osm_id of feature 21013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 432971983 of field osm_id of feature 21014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 433291912 of field osm_id of feature 21015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 435416654 of field osm_id of feature 21016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 436596559 of field osm_id of feature 21017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 437526418 of field osm_id of feature 21018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 437715496 of field osm_id of feature 21019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 437715496 of field osm_id of feature 21020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438687375 of field osm_id of feature 21021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438687378 of field osm_id of feature 21022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438687381 of field osm_id of feature 21023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438687382 of field osm_id of feature 21024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438741203 of field osm_id of feature 21025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438742633 of field osm_id of feature 21026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438927632 of field osm_id of feature 21027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438927634 of field osm_id of feature 21028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438927636 of field osm_id of feature 21029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438927637 of field osm_id of feature 21030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438929221 of field osm_id of feature 21031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438931581 of field osm_id of feature 21032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438931582 of field osm_id of feature 21033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 438931583 of field osm_id of feature 21034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183895 of field osm_id of feature 21035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183897 of field osm_id of feature 21036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183898 of field osm_id of feature 21037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183898 of field osm_id of feature 21038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183898 of field osm_id of feature 21039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183899 of field osm_id of feature 21040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183899 of field osm_id of feature 21041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183900 of field osm_id of feature 21042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183901 of field osm_id of feature 21043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183903 of field osm_id of feature 21044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183903 of field osm_id of feature 21045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183904 of field osm_id of feature 21046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183917 of field osm_id of feature 21047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183918 of field osm_id of feature 21048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183919 of field osm_id of feature 21049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439183919 of field osm_id of feature 21050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439272376 of field osm_id of feature 21051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439331251 of field osm_id of feature 21052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439331255 of field osm_id of feature 21053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439334943 of field osm_id of feature 21054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439334944 of field osm_id of feature 21055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439478398 of field osm_id of feature 21056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439478400 of field osm_id of feature 21057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439740108 of field osm_id of feature 21058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 439740108 of field osm_id of feature 21059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440048516 of field osm_id of feature 21060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440048517 of field osm_id of feature 21061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440207141 of field osm_id of feature 21062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440207146 of field osm_id of feature 21063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440444696 of field osm_id of feature 21064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440539339 of field osm_id of feature 21065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440918817 of field osm_id of feature 21066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 440918819 of field osm_id of feature 21067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 442949940 of field osm_id of feature 21068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 442949942 of field osm_id of feature 21069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 442949944 of field osm_id of feature 21070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443122389 of field osm_id of feature 21071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443122391 of field osm_id of feature 21072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443125081 of field osm_id of feature 21073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443125082 of field osm_id of feature 21074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443283841 of field osm_id of feature 21075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443283842 of field osm_id of feature 21076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443815943 of field osm_id of feature 21077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 443927852 of field osm_id of feature 21078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444068471 of field osm_id of feature 21079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356118 of field osm_id of feature 21080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356119 of field osm_id of feature 21081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356120 of field osm_id of feature 21082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356121 of field osm_id of feature 21083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356123 of field osm_id of feature 21084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356125 of field osm_id of feature 21085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444356126 of field osm_id of feature 21086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444841565 of field osm_id of feature 21087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444841566 of field osm_id of feature 21088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444841566 of field osm_id of feature 21089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444899255 of field osm_id of feature 21090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 444899256 of field osm_id of feature 21091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445000358 of field osm_id of feature 21092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445001352 of field osm_id of feature 21093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445005728 of field osm_id of feature 21094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445005729 of field osm_id of feature 21095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445015395 of field osm_id of feature 21096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445040719 of field osm_id of feature 21097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445104506 of field osm_id of feature 21098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445104508 of field osm_id of feature 21099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445104511 of field osm_id of feature 21100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445130927 of field osm_id of feature 21101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282887 of field osm_id of feature 21102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282888 of field osm_id of feature 21103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282889 of field osm_id of feature 21104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282889 of field osm_id of feature 21105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282890 of field osm_id of feature 21106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282891 of field osm_id of feature 21107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282892 of field osm_id of feature 21108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282893 of field osm_id of feature 21109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282894 of field osm_id of feature 21110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282895 of field osm_id of feature 21111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282896 of field osm_id of feature 21112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282898 of field osm_id of feature 21113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282899 of field osm_id of feature 21114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282900 of field osm_id of feature 21115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282901 of field osm_id of feature 21116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282902 of field osm_id of feature 21117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282903 of field osm_id of feature 21118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282904 of field osm_id of feature 21119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282905 of field osm_id of feature 21120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282906 of field osm_id of feature 21121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282907 of field osm_id of feature 21122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282908 of field osm_id of feature 21123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282909 of field osm_id of feature 21124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282909 of field osm_id of feature 21125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282910 of field osm_id of feature 21126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282911 of field osm_id of feature 21127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282912 of field osm_id of feature 21128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282914 of field osm_id of feature 21129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282915 of field osm_id of feature 21130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282916 of field osm_id of feature 21131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282917 of field osm_id of feature 21132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282919 of field osm_id of feature 21133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282920 of field osm_id of feature 21134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282921 of field osm_id of feature 21135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282922 of field osm_id of feature 21136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282923 of field osm_id of feature 21137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282924 of field osm_id of feature 21138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282925 of field osm_id of feature 21139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282926 of field osm_id of feature 21140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282927 of field osm_id of feature 21141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282929 of field osm_id of feature 21142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282930 of field osm_id of feature 21143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282931 of field osm_id of feature 21144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282932 of field osm_id of feature 21145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282933 of field osm_id of feature 21146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282934 of field osm_id of feature 21147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282935 of field osm_id of feature 21148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282936 of field osm_id of feature 21149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282937 of field osm_id of feature 21150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282939 of field osm_id of feature 21151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282943 of field osm_id of feature 21152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282943 of field osm_id of feature 21153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282944 of field osm_id of feature 21154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282945 of field osm_id of feature 21155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282946 of field osm_id of feature 21156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282947 of field osm_id of feature 21157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282948 of field osm_id of feature 21158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282949 of field osm_id of feature 21159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282950 of field osm_id of feature 21160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282951 of field osm_id of feature 21161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282952 of field osm_id of feature 21162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282953 of field osm_id of feature 21163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282954 of field osm_id of feature 21164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282956 of field osm_id of feature 21165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282960 of field osm_id of feature 21166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282961 of field osm_id of feature 21167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282962 of field osm_id of feature 21168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282963 of field osm_id of feature 21169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282964 of field osm_id of feature 21170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282965 of field osm_id of feature 21171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282966 of field osm_id of feature 21172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282967 of field osm_id of feature 21173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282968 of field osm_id of feature 21174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282969 of field osm_id of feature 21175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282970 of field osm_id of feature 21176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282971 of field osm_id of feature 21177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282972 of field osm_id of feature 21178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282973 of field osm_id of feature 21179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282973 of field osm_id of feature 21180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282974 of field osm_id of feature 21181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282975 of field osm_id of feature 21182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282976 of field osm_id of feature 21183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282977 of field osm_id of feature 21184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282979 of field osm_id of feature 21185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282980 of field osm_id of feature 21186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282981 of field osm_id of feature 21187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282982 of field osm_id of feature 21188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282983 of field osm_id of feature 21189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282984 of field osm_id of feature 21190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282985 of field osm_id of feature 21191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282986 of field osm_id of feature 21192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282987 of field osm_id of feature 21193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282988 of field osm_id of feature 21194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282989 of field osm_id of feature 21195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282990 of field osm_id of feature 21196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282991 of field osm_id of feature 21197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282992 of field osm_id of feature 21198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282993 of field osm_id of feature 21199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282994 of field osm_id of feature 21200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282995 of field osm_id of feature 21201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282996 of field osm_id of feature 21202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282997 of field osm_id of feature 21203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445282999 of field osm_id of feature 21204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283001 of field osm_id of feature 21205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283002 of field osm_id of feature 21206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283003 of field osm_id of feature 21207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283004 of field osm_id of feature 21208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283005 of field osm_id of feature 21209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283006 of field osm_id of feature 21210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283007 of field osm_id of feature 21211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283008 of field osm_id of feature 21212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283009 of field osm_id of feature 21213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283010 of field osm_id of feature 21214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283011 of field osm_id of feature 21215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283012 of field osm_id of feature 21216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283013 of field osm_id of feature 21217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283014 of field osm_id of feature 21218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283015 of field osm_id of feature 21219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283016 of field osm_id of feature 21220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283019 of field osm_id of feature 21221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283021 of field osm_id of feature 21222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283023 of field osm_id of feature 21223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283025 of field osm_id of feature 21224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283026 of field osm_id of feature 21225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283027 of field osm_id of feature 21226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283028 of field osm_id of feature 21227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283029 of field osm_id of feature 21228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283030 of field osm_id of feature 21229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283031 of field osm_id of feature 21230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283032 of field osm_id of feature 21231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283033 of field osm_id of feature 21232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283034 of field osm_id of feature 21233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283035 of field osm_id of feature 21234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283036 of field osm_id of feature 21235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283037 of field osm_id of feature 21236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283038 of field osm_id of feature 21237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283039 of field osm_id of feature 21238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283040 of field osm_id of feature 21239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445283041 of field osm_id of feature 21240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336020 of field osm_id of feature 21241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336021 of field osm_id of feature 21242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336022 of field osm_id of feature 21243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336023 of field osm_id of feature 21244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336024 of field osm_id of feature 21245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336026 of field osm_id of feature 21246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445336027 of field osm_id of feature 21247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445338927 of field osm_id of feature 21248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445338927 of field osm_id of feature 21249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445338928 of field osm_id of feature 21250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445338929 of field osm_id of feature 21251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445338930 of field osm_id of feature 21252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445711165 of field osm_id of feature 21253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716656 of field osm_id of feature 21254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716657 of field osm_id of feature 21255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716658 of field osm_id of feature 21256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716661 of field osm_id of feature 21257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716662 of field osm_id of feature 21258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716663 of field osm_id of feature 21259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716664 of field osm_id of feature 21260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716665 of field osm_id of feature 21261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716666 of field osm_id of feature 21262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716667 of field osm_id of feature 21263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716668 of field osm_id of feature 21264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716670 of field osm_id of feature 21265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716671 of field osm_id of feature 21266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716672 of field osm_id of feature 21267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716673 of field osm_id of feature 21268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716674 of field osm_id of feature 21269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716675 of field osm_id of feature 21270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716677 of field osm_id of feature 21271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716678 of field osm_id of feature 21272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716679 of field osm_id of feature 21273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716680 of field osm_id of feature 21274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716682 of field osm_id of feature 21275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716683 of field osm_id of feature 21276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716684 of field osm_id of feature 21277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716684 of field osm_id of feature 21278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716685 of field osm_id of feature 21279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716685 of field osm_id of feature 21280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716686 of field osm_id of feature 21281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716687 of field osm_id of feature 21282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716687 of field osm_id of feature 21283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716688 of field osm_id of feature 21284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716689 of field osm_id of feature 21285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716690 of field osm_id of feature 21286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716691 of field osm_id of feature 21287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716692 of field osm_id of feature 21288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716694 of field osm_id of feature 21289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716695 of field osm_id of feature 21290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716696 of field osm_id of feature 21291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716697 of field osm_id of feature 21292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716698 of field osm_id of feature 21293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716699 of field osm_id of feature 21294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716702 of field osm_id of feature 21295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716703 of field osm_id of feature 21296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716711 of field osm_id of feature 21297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716713 of field osm_id of feature 21298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716715 of field osm_id of feature 21299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716716 of field osm_id of feature 21300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716717 of field osm_id of feature 21301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716718 of field osm_id of feature 21302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716719 of field osm_id of feature 21303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716720 of field osm_id of feature 21304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716721 of field osm_id of feature 21305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716722 of field osm_id of feature 21306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716724 of field osm_id of feature 21307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716725 of field osm_id of feature 21308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716726 of field osm_id of feature 21309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716727 of field osm_id of feature 21310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716728 of field osm_id of feature 21311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716729 of field osm_id of feature 21312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716730 of field osm_id of feature 21313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716731 of field osm_id of feature 21314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716732 of field osm_id of feature 21315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716734 of field osm_id of feature 21316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716735 of field osm_id of feature 21317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716736 of field osm_id of feature 21318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716737 of field osm_id of feature 21319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716738 of field osm_id of feature 21320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716740 of field osm_id of feature 21321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716742 of field osm_id of feature 21322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716745 of field osm_id of feature 21323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716746 of field osm_id of feature 21324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716747 of field osm_id of feature 21325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716748 of field osm_id of feature 21326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716749 of field osm_id of feature 21327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716750 of field osm_id of feature 21328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716751 of field osm_id of feature 21329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716752 of field osm_id of feature 21330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716753 of field osm_id of feature 21331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716754 of field osm_id of feature 21332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716755 of field osm_id of feature 21333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716756 of field osm_id of feature 21334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716757 of field osm_id of feature 21335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716758 of field osm_id of feature 21336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716759 of field osm_id of feature 21337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716760 of field osm_id of feature 21338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716761 of field osm_id of feature 21339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716764 of field osm_id of feature 21340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716765 of field osm_id of feature 21341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716766 of field osm_id of feature 21342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716767 of field osm_id of feature 21343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716769 of field osm_id of feature 21344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716772 of field osm_id of feature 21345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716773 of field osm_id of feature 21346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716774 of field osm_id of feature 21347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716775 of field osm_id of feature 21348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716776 of field osm_id of feature 21349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716777 of field osm_id of feature 21350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716778 of field osm_id of feature 21351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716779 of field osm_id of feature 21352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716780 of field osm_id of feature 21353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716781 of field osm_id of feature 21354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716782 of field osm_id of feature 21355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716783 of field osm_id of feature 21356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716784 of field osm_id of feature 21357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716786 of field osm_id of feature 21358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716787 of field osm_id of feature 21359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716788 of field osm_id of feature 21360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716789 of field osm_id of feature 21361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716790 of field osm_id of feature 21362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716791 of field osm_id of feature 21363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716791 of field osm_id of feature 21364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716792 of field osm_id of feature 21365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716792 of field osm_id of feature 21366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716793 of field osm_id of feature 21367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 445716794 of field osm_id of feature 21368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 446636625 of field osm_id of feature 21369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 446636626 of field osm_id of feature 21370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447110783 of field osm_id of feature 21371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447110784 of field osm_id of feature 21372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447221301 of field osm_id of feature 21373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447334546 of field osm_id of feature 21374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447334547 of field osm_id of feature 21375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447335053 of field osm_id of feature 21376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447335055 of field osm_id of feature 21377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447336514 of field osm_id of feature 21378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712917 of field osm_id of feature 21379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712927 of field osm_id of feature 21380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712937 of field osm_id of feature 21381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712939 of field osm_id of feature 21382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712940 of field osm_id of feature 21383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712941 of field osm_id of feature 21384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712943 of field osm_id of feature 21385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712944 of field osm_id of feature 21386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712949 of field osm_id of feature 21387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712950 of field osm_id of feature 21388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712951 of field osm_id of feature 21389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712954 of field osm_id of feature 21390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712956 of field osm_id of feature 21391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712957 of field osm_id of feature 21392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712958 of field osm_id of feature 21393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712959 of field osm_id of feature 21394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712961 of field osm_id of feature 21395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712963 of field osm_id of feature 21396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712965 of field osm_id of feature 21397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712966 of field osm_id of feature 21398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712967 of field osm_id of feature 21399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712968 of field osm_id of feature 21400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712969 of field osm_id of feature 21401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712970 of field osm_id of feature 21402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712971 of field osm_id of feature 21403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712973 of field osm_id of feature 21404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712975 of field osm_id of feature 21405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712977 of field osm_id of feature 21406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712978 of field osm_id of feature 21407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712981 of field osm_id of feature 21408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712983 of field osm_id of feature 21409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712984 of field osm_id of feature 21410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712986 of field osm_id of feature 21411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712989 of field osm_id of feature 21412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712990 of field osm_id of feature 21413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712993 of field osm_id of feature 21414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447712996 of field osm_id of feature 21415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713000 of field osm_id of feature 21416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713001 of field osm_id of feature 21417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713002 of field osm_id of feature 21418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713004 of field osm_id of feature 21419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713008 of field osm_id of feature 21420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713013 of field osm_id of feature 21421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713023 of field osm_id of feature 21422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713025 of field osm_id of feature 21423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713232 of field osm_id of feature 21424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713233 of field osm_id of feature 21425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713234 of field osm_id of feature 21426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713237 of field osm_id of feature 21427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713238 of field osm_id of feature 21428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713239 of field osm_id of feature 21429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713240 of field osm_id of feature 21430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713241 of field osm_id of feature 21431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713241 of field osm_id of feature 21432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713242 of field osm_id of feature 21433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713245 of field osm_id of feature 21434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713247 of field osm_id of feature 21435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713248 of field osm_id of feature 21436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713249 of field osm_id of feature 21437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713250 of field osm_id of feature 21438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713251 of field osm_id of feature 21439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713252 of field osm_id of feature 21440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 447713253 of field osm_id of feature 21441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448084961 of field osm_id of feature 21442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448084962 of field osm_id of feature 21443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448084967 of field osm_id of feature 21444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448161911 of field osm_id of feature 21445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448498083 of field osm_id of feature 21446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937428 of field osm_id of feature 21447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937429 of field osm_id of feature 21448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937430 of field osm_id of feature 21449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937431 of field osm_id of feature 21450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937432 of field osm_id of feature 21451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937433 of field osm_id of feature 21452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937434 of field osm_id of feature 21453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937435 of field osm_id of feature 21454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937436 of field osm_id of feature 21455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937437 of field osm_id of feature 21456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937438 of field osm_id of feature 21457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937439 of field osm_id of feature 21458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937440 of field osm_id of feature 21459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937441 of field osm_id of feature 21460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937442 of field osm_id of feature 21461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937443 of field osm_id of feature 21462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937444 of field osm_id of feature 21463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937445 of field osm_id of feature 21464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937446 of field osm_id of feature 21465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937447 of field osm_id of feature 21466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937450 of field osm_id of feature 21467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937453 of field osm_id of feature 21468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937456 of field osm_id of feature 21469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937458 of field osm_id of feature 21470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937459 of field osm_id of feature 21471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937460 of field osm_id of feature 21472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937461 of field osm_id of feature 21473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937462 of field osm_id of feature 21474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937463 of field osm_id of feature 21475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937464 of field osm_id of feature 21476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937466 of field osm_id of feature 21477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937467 of field osm_id of feature 21478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937468 of field osm_id of feature 21479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937469 of field osm_id of feature 21480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937470 of field osm_id of feature 21481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937471 of field osm_id of feature 21482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937472 of field osm_id of feature 21483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937473 of field osm_id of feature 21484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937474 of field osm_id of feature 21485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937474 of field osm_id of feature 21486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937475 of field osm_id of feature 21487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937476 of field osm_id of feature 21488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937477 of field osm_id of feature 21489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937478 of field osm_id of feature 21490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937479 of field osm_id of feature 21491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937480 of field osm_id of feature 21492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937481 of field osm_id of feature 21493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937482 of field osm_id of feature 21494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937483 of field osm_id of feature 21495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937484 of field osm_id of feature 21496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937485 of field osm_id of feature 21497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937486 of field osm_id of feature 21498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937487 of field osm_id of feature 21499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937488 of field osm_id of feature 21500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937489 of field osm_id of feature 21501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937489 of field osm_id of feature 21502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937490 of field osm_id of feature 21503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937491 of field osm_id of feature 21504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937492 of field osm_id of feature 21505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937493 of field osm_id of feature 21506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937494 of field osm_id of feature 21507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937495 of field osm_id of feature 21508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937496 of field osm_id of feature 21509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937497 of field osm_id of feature 21510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937498 of field osm_id of feature 21511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937499 of field osm_id of feature 21512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937500 of field osm_id of feature 21513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937501 of field osm_id of feature 21514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937501 of field osm_id of feature 21515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937502 of field osm_id of feature 21516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937503 of field osm_id of feature 21517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937504 of field osm_id of feature 21518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937505 of field osm_id of feature 21519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937506 of field osm_id of feature 21520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937507 of field osm_id of feature 21521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937508 of field osm_id of feature 21522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937509 of field osm_id of feature 21523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937510 of field osm_id of feature 21524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937511 of field osm_id of feature 21525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937520 of field osm_id of feature 21526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937523 of field osm_id of feature 21527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937524 of field osm_id of feature 21528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937525 of field osm_id of feature 21529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937526 of field osm_id of feature 21530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937527 of field osm_id of feature 21531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937528 of field osm_id of feature 21532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937529 of field osm_id of feature 21533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937530 of field osm_id of feature 21534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937531 of field osm_id of feature 21535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937532 of field osm_id of feature 21536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937533 of field osm_id of feature 21537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937534 of field osm_id of feature 21538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937535 of field osm_id of feature 21539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937536 of field osm_id of feature 21540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937537 of field osm_id of feature 21541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937538 of field osm_id of feature 21542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937539 of field osm_id of feature 21543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937540 of field osm_id of feature 21544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937541 of field osm_id of feature 21545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937542 of field osm_id of feature 21546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937543 of field osm_id of feature 21547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937544 of field osm_id of feature 21548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937545 of field osm_id of feature 21549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937546 of field osm_id of feature 21550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937547 of field osm_id of feature 21551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937549 of field osm_id of feature 21552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937550 of field osm_id of feature 21553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937551 of field osm_id of feature 21554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937552 of field osm_id of feature 21555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937553 of field osm_id of feature 21556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937554 of field osm_id of feature 21557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937555 of field osm_id of feature 21558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937556 of field osm_id of feature 21559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937557 of field osm_id of feature 21560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937558 of field osm_id of feature 21561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937559 of field osm_id of feature 21562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937560 of field osm_id of feature 21563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937561 of field osm_id of feature 21564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937562 of field osm_id of feature 21565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937563 of field osm_id of feature 21566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937564 of field osm_id of feature 21567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937565 of field osm_id of feature 21568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937566 of field osm_id of feature 21569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937567 of field osm_id of feature 21570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937568 of field osm_id of feature 21571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937569 of field osm_id of feature 21572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937570 of field osm_id of feature 21573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937571 of field osm_id of feature 21574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937572 of field osm_id of feature 21575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937573 of field osm_id of feature 21576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937574 of field osm_id of feature 21577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937575 of field osm_id of feature 21578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937576 of field osm_id of feature 21579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937577 of field osm_id of feature 21580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937578 of field osm_id of feature 21581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937579 of field osm_id of feature 21582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937580 of field osm_id of feature 21583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937581 of field osm_id of feature 21584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937596 of field osm_id of feature 21585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937598 of field osm_id of feature 21586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937600 of field osm_id of feature 21587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937603 of field osm_id of feature 21588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937605 of field osm_id of feature 21589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937608 of field osm_id of feature 21590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937610 of field osm_id of feature 21591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937613 of field osm_id of feature 21592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937614 of field osm_id of feature 21593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937615 of field osm_id of feature 21594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937616 of field osm_id of feature 21595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937617 of field osm_id of feature 21596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937618 of field osm_id of feature 21597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937619 of field osm_id of feature 21598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937620 of field osm_id of feature 21599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937621 of field osm_id of feature 21600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937622 of field osm_id of feature 21601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937623 of field osm_id of feature 21602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937624 of field osm_id of feature 21603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937625 of field osm_id of feature 21604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937626 of field osm_id of feature 21605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937628 of field osm_id of feature 21606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937629 of field osm_id of feature 21607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937630 of field osm_id of feature 21608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937631 of field osm_id of feature 21609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937632 of field osm_id of feature 21610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937633 of field osm_id of feature 21611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937634 of field osm_id of feature 21612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937635 of field osm_id of feature 21613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937636 of field osm_id of feature 21614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937637 of field osm_id of feature 21615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937638 of field osm_id of feature 21616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937639 of field osm_id of feature 21617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937640 of field osm_id of feature 21618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937641 of field osm_id of feature 21619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937642 of field osm_id of feature 21620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937643 of field osm_id of feature 21621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937644 of field osm_id of feature 21622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937645 of field osm_id of feature 21623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937646 of field osm_id of feature 21624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937647 of field osm_id of feature 21625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937648 of field osm_id of feature 21626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937649 of field osm_id of feature 21627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937650 of field osm_id of feature 21628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937651 of field osm_id of feature 21629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937652 of field osm_id of feature 21630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937654 of field osm_id of feature 21631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937657 of field osm_id of feature 21632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937659 of field osm_id of feature 21633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937661 of field osm_id of feature 21634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937662 of field osm_id of feature 21635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937663 of field osm_id of feature 21636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937664 of field osm_id of feature 21637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937665 of field osm_id of feature 21638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937667 of field osm_id of feature 21639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937668 of field osm_id of feature 21640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937669 of field osm_id of feature 21641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937670 of field osm_id of feature 21642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937671 of field osm_id of feature 21643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937672 of field osm_id of feature 21644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937673 of field osm_id of feature 21645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937674 of field osm_id of feature 21646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937676 of field osm_id of feature 21647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937677 of field osm_id of feature 21648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937678 of field osm_id of feature 21649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937679 of field osm_id of feature 21650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937680 of field osm_id of feature 21651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937681 of field osm_id of feature 21652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937682 of field osm_id of feature 21653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937683 of field osm_id of feature 21654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937684 of field osm_id of feature 21655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937685 of field osm_id of feature 21656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937686 of field osm_id of feature 21657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937701 of field osm_id of feature 21658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937701 of field osm_id of feature 21659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937703 of field osm_id of feature 21660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937705 of field osm_id of feature 21661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937707 of field osm_id of feature 21662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937709 of field osm_id of feature 21663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937712 of field osm_id of feature 21664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937714 of field osm_id of feature 21665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937716 of field osm_id of feature 21666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937717 of field osm_id of feature 21667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448937719 of field osm_id of feature 21668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 448940686 of field osm_id of feature 21669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 449242303 of field osm_id of feature 21670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 449387967 of field osm_id of feature 21671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 449392477 of field osm_id of feature 21672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 449394643 of field osm_id of feature 21673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 449399358 of field osm_id of feature 21674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450554396 of field osm_id of feature 21675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450554397 of field osm_id of feature 21676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450554398 of field osm_id of feature 21677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450700056 of field osm_id of feature 21678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450700242 of field osm_id of feature 21679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450700243 of field osm_id of feature 21680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450926023 of field osm_id of feature 21681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450926024 of field osm_id of feature 21682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450926025 of field osm_id of feature 21683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450926156 of field osm_id of feature 21684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450926157 of field osm_id of feature 21685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938283 of field osm_id of feature 21686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938284 of field osm_id of feature 21687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938285 of field osm_id of feature 21688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938286 of field osm_id of feature 21689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938287 of field osm_id of feature 21690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 450938289 of field osm_id of feature 21691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451876021 of field osm_id of feature 21692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451876023 of field osm_id of feature 21693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451877662 of field osm_id of feature 21694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997560 of field osm_id of feature 21695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997563 of field osm_id of feature 21696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997566 of field osm_id of feature 21697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997768 of field osm_id of feature 21698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997769 of field osm_id of feature 21699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451997770 of field osm_id of feature 21700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 451998040 of field osm_id of feature 21701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452000168 of field osm_id of feature 21702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452000282 of field osm_id of feature 21703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452000283 of field osm_id of feature 21704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452000289 of field osm_id of feature 21705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452000290 of field osm_id of feature 21706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452003165 of field osm_id of feature 21707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452003170 of field osm_id of feature 21708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006663 of field osm_id of feature 21709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006664 of field osm_id of feature 21710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006665 of field osm_id of feature 21711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006666 of field osm_id of feature 21712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006667 of field osm_id of feature 21713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006668 of field osm_id of feature 21714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452006669 of field osm_id of feature 21715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452008622 of field osm_id of feature 21716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452008627 of field osm_id of feature 21717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452008631 of field osm_id of feature 21718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452008632 of field osm_id of feature 21719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452009321 of field osm_id of feature 21720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452009322 of field osm_id of feature 21721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452010734 of field osm_id of feature 21722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452012131 of field osm_id of feature 21723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452017699 of field osm_id of feature 21724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452019014 of field osm_id of feature 21725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452032592 of field osm_id of feature 21726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452033396 of field osm_id of feature 21727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452037523 of field osm_id of feature 21728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452037524 of field osm_id of feature 21729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452037525 of field osm_id of feature 21730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452037526 of field osm_id of feature 21731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040406 of field osm_id of feature 21732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040407 of field osm_id of feature 21733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040414 of field osm_id of feature 21734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040414 of field osm_id of feature 21735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040415 of field osm_id of feature 21736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452040416 of field osm_id of feature 21737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452050590 of field osm_id of feature 21738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452062943 of field osm_id of feature 21739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452074739 of field osm_id of feature 21740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452240160 of field osm_id of feature 21741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452242287 of field osm_id of feature 21742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452242874 of field osm_id of feature 21743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452242875 of field osm_id of feature 21744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452246988 of field osm_id of feature 21745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452246989 of field osm_id of feature 21746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452246990 of field osm_id of feature 21747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452248192 of field osm_id of feature 21748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452252697 of field osm_id of feature 21749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452252697 of field osm_id of feature 21750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452252699 of field osm_id of feature 21751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452360044 of field osm_id of feature 21752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452363509 of field osm_id of feature 21753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452363510 of field osm_id of feature 21754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452365478 of field osm_id of feature 21755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452367013 of field osm_id of feature 21756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452382982 of field osm_id of feature 21757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452398411 of field osm_id of feature 21758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452398412 of field osm_id of feature 21759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452418318 of field osm_id of feature 21760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452418319 of field osm_id of feature 21761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452425221 of field osm_id of feature 21762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452425847 of field osm_id of feature 21763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452425852 of field osm_id of feature 21764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452425854 of field osm_id of feature 21765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452645232 of field osm_id of feature 21766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452645232 of field osm_id of feature 21767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452645234 of field osm_id of feature 21768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452645236 of field osm_id of feature 21769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 452857257 of field osm_id of feature 21770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453219235 of field osm_id of feature 21771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453238704 of field osm_id of feature 21772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453277149 of field osm_id of feature 21773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453359241 of field osm_id of feature 21774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453448270 of field osm_id of feature 21775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453707047 of field osm_id of feature 21776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453746115 of field osm_id of feature 21777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453746117 of field osm_id of feature 21778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453769184 of field osm_id of feature 21779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453769185 of field osm_id of feature 21780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 453769186 of field osm_id of feature 21781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454000746 of field osm_id of feature 21782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454000747 of field osm_id of feature 21783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454001709 of field osm_id of feature 21784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454013844 of field osm_id of feature 21785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454013845 of field osm_id of feature 21786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454013846 of field osm_id of feature 21787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454182347 of field osm_id of feature 21788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454185990 of field osm_id of feature 21789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454189362 of field osm_id of feature 21790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 454880868 of field osm_id of feature 21791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 455566163 of field osm_id of feature 21792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 456170207 of field osm_id of feature 21793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 456434806 of field osm_id of feature 21794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 456434807 of field osm_id of feature 21795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 457801483 of field osm_id of feature 21796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 457801483 of field osm_id of feature 21797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 458843638 of field osm_id of feature 21798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 458844339 of field osm_id of feature 21799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186754 of field osm_id of feature 21800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186755 of field osm_id of feature 21801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186756 of field osm_id of feature 21802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186757 of field osm_id of feature 21803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186758 of field osm_id of feature 21804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186759 of field osm_id of feature 21805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186761 of field osm_id of feature 21806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186762 of field osm_id of feature 21807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186763 of field osm_id of feature 21808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186764 of field osm_id of feature 21809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186765 of field osm_id of feature 21810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186766 of field osm_id of feature 21811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186767 of field osm_id of feature 21812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186768 of field osm_id of feature 21813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186769 of field osm_id of feature 21814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186770 of field osm_id of feature 21815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186771 of field osm_id of feature 21816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459186772 of field osm_id of feature 21817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 459514942 of field osm_id of feature 21818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 460482049 of field osm_id of feature 21819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461215670 of field osm_id of feature 21820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461215671 of field osm_id of feature 21821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216620 of field osm_id of feature 21822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216621 of field osm_id of feature 21823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216622 of field osm_id of feature 21824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216623 of field osm_id of feature 21825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216624 of field osm_id of feature 21826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216625 of field osm_id of feature 21827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 461216626 of field osm_id of feature 21828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462004566 of field osm_id of feature 21829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462004567 of field osm_id of feature 21830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462295613 of field osm_id of feature 21831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462295614 of field osm_id of feature 21832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462451875 of field osm_id of feature 21833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462453133 of field osm_id of feature 21834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462454172 of field osm_id of feature 21835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462454173 of field osm_id of feature 21836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462560369 of field osm_id of feature 21837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462707674 of field osm_id of feature 21838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818706 of field osm_id of feature 21839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818707 of field osm_id of feature 21840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818708 of field osm_id of feature 21841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818709 of field osm_id of feature 21842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818710 of field osm_id of feature 21843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818711 of field osm_id of feature 21844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462818712 of field osm_id of feature 21845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462826193 of field osm_id of feature 21846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462850800 of field osm_id of feature 21847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462850801 of field osm_id of feature 21848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462864325 of field osm_id of feature 21849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462871390 of field osm_id of feature 21850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462871393 of field osm_id of feature 21851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462880253 of field osm_id of feature 21852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462880254 of field osm_id of feature 21853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462880255 of field osm_id of feature 21854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 462880256 of field osm_id of feature 21855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463033288 of field osm_id of feature 21856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463204759 of field osm_id of feature 21857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463482480 of field osm_id of feature 21858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463485951 of field osm_id of feature 21859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494880 of field osm_id of feature 21860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494881 of field osm_id of feature 21861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494882 of field osm_id of feature 21862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494883 of field osm_id of feature 21863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494884 of field osm_id of feature 21864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494885 of field osm_id of feature 21865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494889 of field osm_id of feature 21866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494891 of field osm_id of feature 21867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494892 of field osm_id of feature 21868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494893 of field osm_id of feature 21869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494894 of field osm_id of feature 21870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494895 of field osm_id of feature 21871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494896 of field osm_id of feature 21872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463494897 of field osm_id of feature 21873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463526658 of field osm_id of feature 21874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463532834 of field osm_id of feature 21875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463533086 of field osm_id of feature 21876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463533826 of field osm_id of feature 21877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463535331 of field osm_id of feature 21878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463535332 of field osm_id of feature 21879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463535732 of field osm_id of feature 21880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463535733 of field osm_id of feature 21881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463535734 of field osm_id of feature 21882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463542797 of field osm_id of feature 21883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463542798 of field osm_id of feature 21884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463546861 of field osm_id of feature 21885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463546862 of field osm_id of feature 21886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463548687 of field osm_id of feature 21887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463549178 of field osm_id of feature 21888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463549179 of field osm_id of feature 21889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463958726 of field osm_id of feature 21890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463958727 of field osm_id of feature 21891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463958728 of field osm_id of feature 21892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463958729 of field osm_id of feature 21893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962022 of field osm_id of feature 21894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962028 of field osm_id of feature 21895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962029 of field osm_id of feature 21896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962663 of field osm_id of feature 21897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962665 of field osm_id of feature 21898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962668 of field osm_id of feature 21899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962670 of field osm_id of feature 21900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962672 of field osm_id of feature 21901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962673 of field osm_id of feature 21902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962675 of field osm_id of feature 21903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962677 of field osm_id of feature 21904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962679 of field osm_id of feature 21905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962682 of field osm_id of feature 21906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962684 of field osm_id of feature 21907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962686 of field osm_id of feature 21908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463962690 of field osm_id of feature 21909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463964553 of field osm_id of feature 21910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463964554 of field osm_id of feature 21911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966347 of field osm_id of feature 21912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966348 of field osm_id of feature 21913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966349 of field osm_id of feature 21914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966350 of field osm_id of feature 21915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966352 of field osm_id of feature 21916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966780 of field osm_id of feature 21917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966781 of field osm_id of feature 21918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966782 of field osm_id of feature 21919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966788 of field osm_id of feature 21920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463966814 of field osm_id of feature 21921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969351 of field osm_id of feature 21922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969352 of field osm_id of feature 21923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969353 of field osm_id of feature 21924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969355 of field osm_id of feature 21925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969356 of field osm_id of feature 21926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463969357 of field osm_id of feature 21927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970325 of field osm_id of feature 21928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970326 of field osm_id of feature 21929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970328 of field osm_id of feature 21930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970330 of field osm_id of feature 21931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970331 of field osm_id of feature 21932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970333 of field osm_id of feature 21933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463970334 of field osm_id of feature 21934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972016 of field osm_id of feature 21935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972017 of field osm_id of feature 21936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972040 of field osm_id of feature 21937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972042 of field osm_id of feature 21938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972045 of field osm_id of feature 21939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972046 of field osm_id of feature 21940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972047 of field osm_id of feature 21941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972048 of field osm_id of feature 21942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972052 of field osm_id of feature 21943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972053 of field osm_id of feature 21944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972054 of field osm_id of feature 21945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972059 of field osm_id of feature 21946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972060 of field osm_id of feature 21947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972061 of field osm_id of feature 21948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972062 of field osm_id of feature 21949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972068 of field osm_id of feature 21950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972069 of field osm_id of feature 21951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972070 of field osm_id of feature 21952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972072 of field osm_id of feature 21953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972073 of field osm_id of feature 21954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972074 of field osm_id of feature 21955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972075 of field osm_id of feature 21956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972077 of field osm_id of feature 21957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972102 of field osm_id of feature 21958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972103 of field osm_id of feature 21959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972104 of field osm_id of feature 21960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972105 of field osm_id of feature 21961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463972531 of field osm_id of feature 21962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974464 of field osm_id of feature 21963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974464 of field osm_id of feature 21964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974466 of field osm_id of feature 21965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974467 of field osm_id of feature 21966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974469 of field osm_id of feature 21967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974626 of field osm_id of feature 21968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974627 of field osm_id of feature 21969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974630 of field osm_id of feature 21970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974631 of field osm_id of feature 21971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974692 of field osm_id of feature 21972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974695 of field osm_id of feature 21973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463974696 of field osm_id of feature 21974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975851 of field osm_id of feature 21975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975853 of field osm_id of feature 21976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975854 of field osm_id of feature 21977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975855 of field osm_id of feature 21978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975856 of field osm_id of feature 21979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463975857 of field osm_id of feature 21980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977274 of field osm_id of feature 21981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977275 of field osm_id of feature 21982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977276 of field osm_id of feature 21983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977996 of field osm_id of feature 21984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977997 of field osm_id of feature 21985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463977998 of field osm_id of feature 21986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463978000 of field osm_id of feature 21987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463978001 of field osm_id of feature 21988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463978004 of field osm_id of feature 21989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984512 of field osm_id of feature 21990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984513 of field osm_id of feature 21991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984516 of field osm_id of feature 21992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984526 of field osm_id of feature 21993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984527 of field osm_id of feature 21994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984528 of field osm_id of feature 21995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984529 of field osm_id of feature 21996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984532 of field osm_id of feature 21997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984533 of field osm_id of feature 21998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984728 of field osm_id of feature 21999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984747 of field osm_id of feature 22000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463984748 of field osm_id of feature 22001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463985781 of field osm_id of feature 22002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463986344 of field osm_id of feature 22003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463986345 of field osm_id of feature 22004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463986351 of field osm_id of feature 22005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463986352 of field osm_id of feature 22006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463990488 of field osm_id of feature 22007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463990489 of field osm_id of feature 22008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463990490 of field osm_id of feature 22009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463992182 of field osm_id of feature 22010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463992183 of field osm_id of feature 22011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463992188 of field osm_id of feature 22012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463995440 of field osm_id of feature 22013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463995441 of field osm_id of feature 22014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463995447 of field osm_id of feature 22015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 463995448 of field osm_id of feature 22016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000620 of field osm_id of feature 22017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000621 of field osm_id of feature 22018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000624 of field osm_id of feature 22019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000625 of field osm_id of feature 22020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000626 of field osm_id of feature 22021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000627 of field osm_id of feature 22022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464000628 of field osm_id of feature 22023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464005885 of field osm_id of feature 22024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464005887 of field osm_id of feature 22025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464005888 of field osm_id of feature 22026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464006655 of field osm_id of feature 22027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464006658 of field osm_id of feature 22028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464006662 of field osm_id of feature 22029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464006665 of field osm_id of feature 22030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008707 of field osm_id of feature 22031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008709 of field osm_id of feature 22032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008710 of field osm_id of feature 22033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008711 of field osm_id of feature 22034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008712 of field osm_id of feature 22035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008713 of field osm_id of feature 22036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008714 of field osm_id of feature 22037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008715 of field osm_id of feature 22038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008716 of field osm_id of feature 22039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008717 of field osm_id of feature 22040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008718 of field osm_id of feature 22041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008719 of field osm_id of feature 22042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008720 of field osm_id of feature 22043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008723 of field osm_id of feature 22044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008724 of field osm_id of feature 22045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008725 of field osm_id of feature 22046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464008726 of field osm_id of feature 22047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464019423 of field osm_id of feature 22048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464019424 of field osm_id of feature 22049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464041600 of field osm_id of feature 22050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464129486 of field osm_id of feature 22051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464129487 of field osm_id of feature 22052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464129488 of field osm_id of feature 22053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464129489 of field osm_id of feature 22054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464129492 of field osm_id of feature 22055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464130506 of field osm_id of feature 22056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464130507 of field osm_id of feature 22057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464130508 of field osm_id of feature 22058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464130509 of field osm_id of feature 22059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464131351 of field osm_id of feature 22060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464131352 of field osm_id of feature 22061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464131353 of field osm_id of feature 22062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464133416 of field osm_id of feature 22063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464133417 of field osm_id of feature 22064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464134318 of field osm_id of feature 22065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464134319 of field osm_id of feature 22066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464135430 of field osm_id of feature 22067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464135431 of field osm_id of feature 22068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464135432 of field osm_id of feature 22069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464135433 of field osm_id of feature 22070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464136121 of field osm_id of feature 22071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464136125 of field osm_id of feature 22072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464136475 of field osm_id of feature 22073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464136476 of field osm_id of feature 22074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464138069 of field osm_id of feature 22075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464138070 of field osm_id of feature 22076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147131 of field osm_id of feature 22077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147132 of field osm_id of feature 22078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147140 of field osm_id of feature 22079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147144 of field osm_id of feature 22080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147147 of field osm_id of feature 22081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464147149 of field osm_id of feature 22082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464149347 of field osm_id of feature 22083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464149348 of field osm_id of feature 22084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464149349 of field osm_id of feature 22085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464149350 of field osm_id of feature 22086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150049 of field osm_id of feature 22087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150145 of field osm_id of feature 22088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150147 of field osm_id of feature 22089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150149 of field osm_id of feature 22090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150152 of field osm_id of feature 22091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150154 of field osm_id of feature 22092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150229 of field osm_id of feature 22093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150271 of field osm_id of feature 22094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150273 of field osm_id of feature 22095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464150277 of field osm_id of feature 22096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165762 of field osm_id of feature 22097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165763 of field osm_id of feature 22098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165764 of field osm_id of feature 22099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165765 of field osm_id of feature 22100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165766 of field osm_id of feature 22101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165767 of field osm_id of feature 22102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165768 of field osm_id of feature 22103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165769 of field osm_id of feature 22104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165770 of field osm_id of feature 22105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165771 of field osm_id of feature 22106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165772 of field osm_id of feature 22107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165773 of field osm_id of feature 22108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165774 of field osm_id of feature 22109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464165776 of field osm_id of feature 22110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464166415 of field osm_id of feature 22111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464174978 of field osm_id of feature 22112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464174980 of field osm_id of feature 22113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464174981 of field osm_id of feature 22114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176745 of field osm_id of feature 22115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176746 of field osm_id of feature 22116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176747 of field osm_id of feature 22117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176748 of field osm_id of feature 22118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176749 of field osm_id of feature 22119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176752 of field osm_id of feature 22120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176755 of field osm_id of feature 22121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464176992 of field osm_id of feature 22122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178647 of field osm_id of feature 22123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178648 of field osm_id of feature 22124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178649 of field osm_id of feature 22125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178650 of field osm_id of feature 22126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178651 of field osm_id of feature 22127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178652 of field osm_id of feature 22128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178666 of field osm_id of feature 22129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178668 of field osm_id of feature 22130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178669 of field osm_id of feature 22131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178670 of field osm_id of feature 22132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178672 of field osm_id of feature 22133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464178673 of field osm_id of feature 22134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464196719 of field osm_id of feature 22135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464196721 of field osm_id of feature 22136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464199169 of field osm_id of feature 22137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464199174 of field osm_id of feature 22138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464199175 of field osm_id of feature 22139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200341 of field osm_id of feature 22140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200342 of field osm_id of feature 22141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200345 of field osm_id of feature 22142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200500 of field osm_id of feature 22143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200536 of field osm_id of feature 22144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200536 of field osm_id of feature 22145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200545 of field osm_id of feature 22146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200548 of field osm_id of feature 22147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464200550 of field osm_id of feature 22148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204339 of field osm_id of feature 22149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204346 of field osm_id of feature 22150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204347 of field osm_id of feature 22151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204349 of field osm_id of feature 22152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204353 of field osm_id of feature 22153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204354 of field osm_id of feature 22154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204725 of field osm_id of feature 22155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204726 of field osm_id of feature 22156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204732 of field osm_id of feature 22157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204736 of field osm_id of feature 22158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204737 of field osm_id of feature 22159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204738 of field osm_id of feature 22160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464204739 of field osm_id of feature 22161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205489 of field osm_id of feature 22162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205497 of field osm_id of feature 22163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205498 of field osm_id of feature 22164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205499 of field osm_id of feature 22165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205500 of field osm_id of feature 22166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205876 of field osm_id of feature 22167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464205877 of field osm_id of feature 22168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206327 of field osm_id of feature 22169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206332 of field osm_id of feature 22170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206333 of field osm_id of feature 22171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206334 of field osm_id of feature 22172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206335 of field osm_id of feature 22173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206336 of field osm_id of feature 22174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206337 of field osm_id of feature 22175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206338 of field osm_id of feature 22176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206339 of field osm_id of feature 22177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206340 of field osm_id of feature 22178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464206341 of field osm_id of feature 22179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207465 of field osm_id of feature 22180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207466 of field osm_id of feature 22181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207468 of field osm_id of feature 22182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207469 of field osm_id of feature 22183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207470 of field osm_id of feature 22184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207471 of field osm_id of feature 22185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207472 of field osm_id of feature 22186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207618 of field osm_id of feature 22187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207619 of field osm_id of feature 22188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207620 of field osm_id of feature 22189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207632 of field osm_id of feature 22190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207633 of field osm_id of feature 22191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207634 of field osm_id of feature 22192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207635 of field osm_id of feature 22193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207635 of field osm_id of feature 22194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207638 of field osm_id of feature 22195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207639 of field osm_id of feature 22196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207641 of field osm_id of feature 22197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207642 of field osm_id of feature 22198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207643 of field osm_id of feature 22199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207644 of field osm_id of feature 22200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207648 of field osm_id of feature 22201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207649 of field osm_id of feature 22202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207657 of field osm_id of feature 22203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207658 of field osm_id of feature 22204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207662 of field osm_id of feature 22205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207665 of field osm_id of feature 22206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207666 of field osm_id of feature 22207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207674 of field osm_id of feature 22208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207675 of field osm_id of feature 22209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207676 of field osm_id of feature 22210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207677 of field osm_id of feature 22211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207682 of field osm_id of feature 22212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207687 of field osm_id of feature 22213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207688 of field osm_id of feature 22214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207689 of field osm_id of feature 22215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207701 of field osm_id of feature 22216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207702 of field osm_id of feature 22217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207702 of field osm_id of feature 22218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207707 of field osm_id of feature 22219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207708 of field osm_id of feature 22220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207709 of field osm_id of feature 22221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207710 of field osm_id of feature 22222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207711 of field osm_id of feature 22223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207711 of field osm_id of feature 22224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207712 of field osm_id of feature 22225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207713 of field osm_id of feature 22226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207714 of field osm_id of feature 22227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207715 of field osm_id of feature 22228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207717 of field osm_id of feature 22229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207723 of field osm_id of feature 22230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207724 of field osm_id of feature 22231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464207725 of field osm_id of feature 22232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464214616 of field osm_id of feature 22233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220062 of field osm_id of feature 22234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220063 of field osm_id of feature 22235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220064 of field osm_id of feature 22236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220066 of field osm_id of feature 22237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220070 of field osm_id of feature 22238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464220071 of field osm_id of feature 22239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221258 of field osm_id of feature 22240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221260 of field osm_id of feature 22241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221263 of field osm_id of feature 22242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221265 of field osm_id of feature 22243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221268 of field osm_id of feature 22244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221270 of field osm_id of feature 22245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221271 of field osm_id of feature 22246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221272 of field osm_id of feature 22247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221276 of field osm_id of feature 22248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221277 of field osm_id of feature 22249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221278 of field osm_id of feature 22250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221280 of field osm_id of feature 22251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221281 of field osm_id of feature 22252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221282 of field osm_id of feature 22253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221283 of field osm_id of feature 22254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221284 of field osm_id of feature 22255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221285 of field osm_id of feature 22256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464221286 of field osm_id of feature 22257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230120 of field osm_id of feature 22258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230121 of field osm_id of feature 22259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230122 of field osm_id of feature 22260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230123 of field osm_id of feature 22261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230124 of field osm_id of feature 22262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230125 of field osm_id of feature 22263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230126 of field osm_id of feature 22264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230127 of field osm_id of feature 22265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230128 of field osm_id of feature 22266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230129 of field osm_id of feature 22267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230130 of field osm_id of feature 22268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230131 of field osm_id of feature 22269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230132 of field osm_id of feature 22270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230133 of field osm_id of feature 22271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230134 of field osm_id of feature 22272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230135 of field osm_id of feature 22273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230136 of field osm_id of feature 22274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230137 of field osm_id of feature 22275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230138 of field osm_id of feature 22276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230139 of field osm_id of feature 22277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230140 of field osm_id of feature 22278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230141 of field osm_id of feature 22279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230142 of field osm_id of feature 22280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230143 of field osm_id of feature 22281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230144 of field osm_id of feature 22282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230145 of field osm_id of feature 22283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230146 of field osm_id of feature 22284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230147 of field osm_id of feature 22285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230148 of field osm_id of feature 22286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230149 of field osm_id of feature 22287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230150 of field osm_id of feature 22288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230151 of field osm_id of feature 22289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230152 of field osm_id of feature 22290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230153 of field osm_id of feature 22291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230154 of field osm_id of feature 22292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464230155 of field osm_id of feature 22293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288908 of field osm_id of feature 22294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288908 of field osm_id of feature 22295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288909 of field osm_id of feature 22296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288910 of field osm_id of feature 22297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288913 of field osm_id of feature 22298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288914 of field osm_id of feature 22299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288916 of field osm_id of feature 22300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288916 of field osm_id of feature 22301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288917 of field osm_id of feature 22302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288917 of field osm_id of feature 22303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288917 of field osm_id of feature 22304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288918 of field osm_id of feature 22305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288919 of field osm_id of feature 22306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288920 of field osm_id of feature 22307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288921 of field osm_id of feature 22308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288922 of field osm_id of feature 22309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288923 of field osm_id of feature 22310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288923 of field osm_id of feature 22311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288924 of field osm_id of feature 22312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288925 of field osm_id of feature 22313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288926 of field osm_id of feature 22314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288926 of field osm_id of feature 22315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288927 of field osm_id of feature 22316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288928 of field osm_id of feature 22317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288929 of field osm_id of feature 22318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288930 of field osm_id of feature 22319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288931 of field osm_id of feature 22320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288932 of field osm_id of feature 22321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288933 of field osm_id of feature 22322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288933 of field osm_id of feature 22323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288934 of field osm_id of feature 22324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288934 of field osm_id of feature 22325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288935 of field osm_id of feature 22326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288936 of field osm_id of feature 22327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288937 of field osm_id of feature 22328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288938 of field osm_id of feature 22329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288939 of field osm_id of feature 22330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288940 of field osm_id of feature 22331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288941 of field osm_id of feature 22332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288942 of field osm_id of feature 22333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288944 of field osm_id of feature 22334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288945 of field osm_id of feature 22335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288946 of field osm_id of feature 22336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288947 of field osm_id of feature 22337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288948 of field osm_id of feature 22338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288949 of field osm_id of feature 22339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288950 of field osm_id of feature 22340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288951 of field osm_id of feature 22341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288952 of field osm_id of feature 22342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288953 of field osm_id of feature 22343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288954 of field osm_id of feature 22344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288955 of field osm_id of feature 22345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288956 of field osm_id of feature 22346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288957 of field osm_id of feature 22347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288958 of field osm_id of feature 22348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288959 of field osm_id of feature 22349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288960 of field osm_id of feature 22350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288961 of field osm_id of feature 22351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288962 of field osm_id of feature 22352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288963 of field osm_id of feature 22353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288964 of field osm_id of feature 22354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288965 of field osm_id of feature 22355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288966 of field osm_id of feature 22356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288967 of field osm_id of feature 22357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288968 of field osm_id of feature 22358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288969 of field osm_id of feature 22359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288970 of field osm_id of feature 22360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288971 of field osm_id of feature 22361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288972 of field osm_id of feature 22362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288973 of field osm_id of feature 22363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288974 of field osm_id of feature 22364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288975 of field osm_id of feature 22365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288976 of field osm_id of feature 22366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288977 of field osm_id of feature 22367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288978 of field osm_id of feature 22368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288978 of field osm_id of feature 22369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288979 of field osm_id of feature 22370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288980 of field osm_id of feature 22371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288981 of field osm_id of feature 22372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288982 of field osm_id of feature 22373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288983 of field osm_id of feature 22374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288984 of field osm_id of feature 22375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288985 of field osm_id of feature 22376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288986 of field osm_id of feature 22377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288987 of field osm_id of feature 22378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288988 of field osm_id of feature 22379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288989 of field osm_id of feature 22380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288990 of field osm_id of feature 22381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288991 of field osm_id of feature 22382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288992 of field osm_id of feature 22383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288993 of field osm_id of feature 22384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288996 of field osm_id of feature 22385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288997 of field osm_id of feature 22386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288998 of field osm_id of feature 22387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464288999 of field osm_id of feature 22388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289000 of field osm_id of feature 22389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289001 of field osm_id of feature 22390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289002 of field osm_id of feature 22391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289003 of field osm_id of feature 22392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289004 of field osm_id of feature 22393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289005 of field osm_id of feature 22394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289006 of field osm_id of feature 22395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289006 of field osm_id of feature 22396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289007 of field osm_id of feature 22397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289008 of field osm_id of feature 22398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289009 of field osm_id of feature 22399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289010 of field osm_id of feature 22400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289011 of field osm_id of feature 22401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289012 of field osm_id of feature 22402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289013 of field osm_id of feature 22403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289014 of field osm_id of feature 22404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289015 of field osm_id of feature 22405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289016 of field osm_id of feature 22406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289017 of field osm_id of feature 22407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289018 of field osm_id of feature 22408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289019 of field osm_id of feature 22409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289020 of field osm_id of feature 22410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289021 of field osm_id of feature 22411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289022 of field osm_id of feature 22412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289023 of field osm_id of feature 22413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289023 of field osm_id of feature 22414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289024 of field osm_id of feature 22415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289025 of field osm_id of feature 22416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289026 of field osm_id of feature 22417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289027 of field osm_id of feature 22418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289028 of field osm_id of feature 22419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289029 of field osm_id of feature 22420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289030 of field osm_id of feature 22421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289031 of field osm_id of feature 22422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289032 of field osm_id of feature 22423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289033 of field osm_id of feature 22424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289034 of field osm_id of feature 22425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289035 of field osm_id of feature 22426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289037 of field osm_id of feature 22427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289038 of field osm_id of feature 22428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289039 of field osm_id of feature 22429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289040 of field osm_id of feature 22430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289041 of field osm_id of feature 22431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289042 of field osm_id of feature 22432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289043 of field osm_id of feature 22433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289044 of field osm_id of feature 22434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289045 of field osm_id of feature 22435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289046 of field osm_id of feature 22436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289047 of field osm_id of feature 22437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289048 of field osm_id of feature 22438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289049 of field osm_id of feature 22439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289050 of field osm_id of feature 22440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289051 of field osm_id of feature 22441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289052 of field osm_id of feature 22442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289053 of field osm_id of feature 22443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289055 of field osm_id of feature 22444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289056 of field osm_id of feature 22445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289057 of field osm_id of feature 22446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289058 of field osm_id of feature 22447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289059 of field osm_id of feature 22448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289060 of field osm_id of feature 22449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289061 of field osm_id of feature 22450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289062 of field osm_id of feature 22451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289064 of field osm_id of feature 22452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289065 of field osm_id of feature 22453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289066 of field osm_id of feature 22454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289067 of field osm_id of feature 22455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289068 of field osm_id of feature 22456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289069 of field osm_id of feature 22457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289070 of field osm_id of feature 22458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289071 of field osm_id of feature 22459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289072 of field osm_id of feature 22460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289073 of field osm_id of feature 22461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289074 of field osm_id of feature 22462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289075 of field osm_id of feature 22463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289078 of field osm_id of feature 22464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289078 of field osm_id of feature 22465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289079 of field osm_id of feature 22466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289091 of field osm_id of feature 22467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289092 of field osm_id of feature 22468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289093 of field osm_id of feature 22469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289094 of field osm_id of feature 22470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289095 of field osm_id of feature 22471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289096 of field osm_id of feature 22472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289097 of field osm_id of feature 22473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464289098 of field osm_id of feature 22474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307227 of field osm_id of feature 22475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307228 of field osm_id of feature 22476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307229 of field osm_id of feature 22477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307230 of field osm_id of feature 22478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307231 of field osm_id of feature 22479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307232 of field osm_id of feature 22480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307233 of field osm_id of feature 22481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307234 of field osm_id of feature 22482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307235 of field osm_id of feature 22483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307236 of field osm_id of feature 22484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307237 of field osm_id of feature 22485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307238 of field osm_id of feature 22486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307239 of field osm_id of feature 22487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307240 of field osm_id of feature 22488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307241 of field osm_id of feature 22489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307242 of field osm_id of feature 22490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307243 of field osm_id of feature 22491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307244 of field osm_id of feature 22492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307245 of field osm_id of feature 22493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307246 of field osm_id of feature 22494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307247 of field osm_id of feature 22495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307248 of field osm_id of feature 22496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307249 of field osm_id of feature 22497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307250 of field osm_id of feature 22498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307251 of field osm_id of feature 22499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307252 of field osm_id of feature 22500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307253 of field osm_id of feature 22501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307254 of field osm_id of feature 22502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307255 of field osm_id of feature 22503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307256 of field osm_id of feature 22504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307257 of field osm_id of feature 22505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307258 of field osm_id of feature 22506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307259 of field osm_id of feature 22507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307260 of field osm_id of feature 22508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307261 of field osm_id of feature 22509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307262 of field osm_id of feature 22510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307263 of field osm_id of feature 22511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307264 of field osm_id of feature 22512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307265 of field osm_id of feature 22513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307267 of field osm_id of feature 22514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307268 of field osm_id of feature 22515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307269 of field osm_id of feature 22516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307270 of field osm_id of feature 22517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307271 of field osm_id of feature 22518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307272 of field osm_id of feature 22519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307272 of field osm_id of feature 22520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307273 of field osm_id of feature 22521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307274 of field osm_id of feature 22522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464307276 of field osm_id of feature 22523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464516161 of field osm_id of feature 22524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464759061 of field osm_id of feature 22525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464759067 of field osm_id of feature 22526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464760645 of field osm_id of feature 22527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464760647 of field osm_id of feature 22528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464765659 of field osm_id of feature 22529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464765660 of field osm_id of feature 22530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464765661 of field osm_id of feature 22531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464765698 of field osm_id of feature 22532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464765699 of field osm_id of feature 22533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464767156 of field osm_id of feature 22534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464767157 of field osm_id of feature 22535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768840 of field osm_id of feature 22536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768851 of field osm_id of feature 22537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768852 of field osm_id of feature 22538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768853 of field osm_id of feature 22539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768857 of field osm_id of feature 22540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768859 of field osm_id of feature 22541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768860 of field osm_id of feature 22542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768861 of field osm_id of feature 22543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768862 of field osm_id of feature 22544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768863 of field osm_id of feature 22545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464768864 of field osm_id of feature 22546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464769927 of field osm_id of feature 22547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464769928 of field osm_id of feature 22548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464769930 of field osm_id of feature 22549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772319 of field osm_id of feature 22550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772320 of field osm_id of feature 22551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772321 of field osm_id of feature 22552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772322 of field osm_id of feature 22553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772323 of field osm_id of feature 22554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772325 of field osm_id of feature 22555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772326 of field osm_id of feature 22556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772327 of field osm_id of feature 22557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772328 of field osm_id of feature 22558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772329 of field osm_id of feature 22559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464772330 of field osm_id of feature 22560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779133 of field osm_id of feature 22561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779135 of field osm_id of feature 22562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779139 of field osm_id of feature 22563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779139 of field osm_id of feature 22564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779142 of field osm_id of feature 22565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779143 of field osm_id of feature 22566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779147 of field osm_id of feature 22567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779148 of field osm_id of feature 22568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779149 of field osm_id of feature 22569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779154 of field osm_id of feature 22570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779163 of field osm_id of feature 22571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779173 of field osm_id of feature 22572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779174 of field osm_id of feature 22573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779175 of field osm_id of feature 22574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779176 of field osm_id of feature 22575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779177 of field osm_id of feature 22576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779178 of field osm_id of feature 22577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779182 of field osm_id of feature 22578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779183 of field osm_id of feature 22579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779184 of field osm_id of feature 22580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779194 of field osm_id of feature 22581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779198 of field osm_id of feature 22582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779225 of field osm_id of feature 22583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779311 of field osm_id of feature 22584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779312 of field osm_id of feature 22585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779313 of field osm_id of feature 22586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779314 of field osm_id of feature 22587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779315 of field osm_id of feature 22588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779323 of field osm_id of feature 22589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779324 of field osm_id of feature 22590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779327 of field osm_id of feature 22591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779332 of field osm_id of feature 22592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779334 of field osm_id of feature 22593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779346 of field osm_id of feature 22594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779347 of field osm_id of feature 22595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779361 of field osm_id of feature 22596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779364 of field osm_id of feature 22597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779367 of field osm_id of feature 22598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779371 of field osm_id of feature 22599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464779372 of field osm_id of feature 22600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783455 of field osm_id of feature 22601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783457 of field osm_id of feature 22602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783500 of field osm_id of feature 22603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783518 of field osm_id of feature 22604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783520 of field osm_id of feature 22605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783527 of field osm_id of feature 22606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783529 of field osm_id of feature 22607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464783539 of field osm_id of feature 22608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464785745 of field osm_id of feature 22609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464785752 of field osm_id of feature 22610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793748 of field osm_id of feature 22611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793749 of field osm_id of feature 22612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793750 of field osm_id of feature 22613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793751 of field osm_id of feature 22614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793752 of field osm_id of feature 22615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793753 of field osm_id of feature 22616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793754 of field osm_id of feature 22617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793755 of field osm_id of feature 22618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793756 of field osm_id of feature 22619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793757 of field osm_id of feature 22620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793758 of field osm_id of feature 22621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464793759 of field osm_id of feature 22622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464796359 of field osm_id of feature 22623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464796361 of field osm_id of feature 22624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798471 of field osm_id of feature 22625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798472 of field osm_id of feature 22626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798473 of field osm_id of feature 22627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798474 of field osm_id of feature 22628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798475 of field osm_id of feature 22629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798476 of field osm_id of feature 22630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798477 of field osm_id of feature 22631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798478 of field osm_id of feature 22632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798479 of field osm_id of feature 22633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798480 of field osm_id of feature 22634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798482 of field osm_id of feature 22635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798485 of field osm_id of feature 22636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798487 of field osm_id of feature 22637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798489 of field osm_id of feature 22638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464798491 of field osm_id of feature 22639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800044 of field osm_id of feature 22640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800046 of field osm_id of feature 22641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800049 of field osm_id of feature 22642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800051 of field osm_id of feature 22643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800052 of field osm_id of feature 22644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800053 of field osm_id of feature 22645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800054 of field osm_id of feature 22646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800055 of field osm_id of feature 22647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800056 of field osm_id of feature 22648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800057 of field osm_id of feature 22649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800511 of field osm_id of feature 22650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800512 of field osm_id of feature 22651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800513 of field osm_id of feature 22652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464800884 of field osm_id of feature 22653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804345 of field osm_id of feature 22654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804346 of field osm_id of feature 22655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804347 of field osm_id of feature 22656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804348 of field osm_id of feature 22657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804352 of field osm_id of feature 22658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804353 of field osm_id of feature 22659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804354 of field osm_id of feature 22660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804355 of field osm_id of feature 22661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804356 of field osm_id of feature 22662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804357 of field osm_id of feature 22663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804358 of field osm_id of feature 22664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804359 of field osm_id of feature 22665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804360 of field osm_id of feature 22666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804361 of field osm_id of feature 22667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804362 of field osm_id of feature 22668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804364 of field osm_id of feature 22669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804365 of field osm_id of feature 22670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804366 of field osm_id of feature 22671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804367 of field osm_id of feature 22672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804368 of field osm_id of feature 22673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804499 of field osm_id of feature 22674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804500 of field osm_id of feature 22675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804502 of field osm_id of feature 22676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804503 of field osm_id of feature 22677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804504 of field osm_id of feature 22678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804507 of field osm_id of feature 22679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804508 of field osm_id of feature 22680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804509 of field osm_id of feature 22681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804510 of field osm_id of feature 22682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804511 of field osm_id of feature 22683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804514 of field osm_id of feature 22684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804516 of field osm_id of feature 22685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804518 of field osm_id of feature 22686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804519 of field osm_id of feature 22687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804520 of field osm_id of feature 22688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804526 of field osm_id of feature 22689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804528 of field osm_id of feature 22690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804529 of field osm_id of feature 22691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804548 of field osm_id of feature 22692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804549 of field osm_id of feature 22693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804550 of field osm_id of feature 22694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804551 of field osm_id of feature 22695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804552 of field osm_id of feature 22696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804554 of field osm_id of feature 22697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804555 of field osm_id of feature 22698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804556 of field osm_id of feature 22699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804557 of field osm_id of feature 22700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804558 of field osm_id of feature 22701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804559 of field osm_id of feature 22702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804560 of field osm_id of feature 22703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804561 of field osm_id of feature 22704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804562 of field osm_id of feature 22705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804563 of field osm_id of feature 22706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804564 of field osm_id of feature 22707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804565 of field osm_id of feature 22708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804566 of field osm_id of feature 22709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804567 of field osm_id of feature 22710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804568 of field osm_id of feature 22711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804569 of field osm_id of feature 22712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804570 of field osm_id of feature 22713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804571 of field osm_id of feature 22714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804572 of field osm_id of feature 22715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804573 of field osm_id of feature 22716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804574 of field osm_id of feature 22717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804575 of field osm_id of feature 22718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804576 of field osm_id of feature 22719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804577 of field osm_id of feature 22720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804578 of field osm_id of feature 22721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804579 of field osm_id of feature 22722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804580 of field osm_id of feature 22723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804581 of field osm_id of feature 22724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804582 of field osm_id of feature 22725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804583 of field osm_id of feature 22726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804584 of field osm_id of feature 22727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804585 of field osm_id of feature 22728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804586 of field osm_id of feature 22729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804587 of field osm_id of feature 22730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804588 of field osm_id of feature 22731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804589 of field osm_id of feature 22732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804591 of field osm_id of feature 22733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804592 of field osm_id of feature 22734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804593 of field osm_id of feature 22735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804814 of field osm_id of feature 22736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804815 of field osm_id of feature 22737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464804817 of field osm_id of feature 22738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464805098 of field osm_id of feature 22739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464806419 of field osm_id of feature 22740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464806420 of field osm_id of feature 22741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809792 of field osm_id of feature 22742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809793 of field osm_id of feature 22743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809794 of field osm_id of feature 22744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809797 of field osm_id of feature 22745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809798 of field osm_id of feature 22746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809799 of field osm_id of feature 22747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464809800 of field osm_id of feature 22748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810766 of field osm_id of feature 22749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810767 of field osm_id of feature 22750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810768 of field osm_id of feature 22751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810769 of field osm_id of feature 22752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810770 of field osm_id of feature 22753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810771 of field osm_id of feature 22754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810772 of field osm_id of feature 22755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810773 of field osm_id of feature 22756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810774 of field osm_id of feature 22757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810775 of field osm_id of feature 22758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810776 of field osm_id of feature 22759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810777 of field osm_id of feature 22760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810778 of field osm_id of feature 22761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810779 of field osm_id of feature 22762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810948 of field osm_id of feature 22763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810961 of field osm_id of feature 22764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810962 of field osm_id of feature 22765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810963 of field osm_id of feature 22766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810965 of field osm_id of feature 22767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810972 of field osm_id of feature 22768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810975 of field osm_id of feature 22769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810977 of field osm_id of feature 22770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810979 of field osm_id of feature 22771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810980 of field osm_id of feature 22772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464810981 of field osm_id of feature 22773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811012 of field osm_id of feature 22774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811013 of field osm_id of feature 22775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811032 of field osm_id of feature 22776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811032 of field osm_id of feature 22777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811033 of field osm_id of feature 22778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811034 of field osm_id of feature 22779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811041 of field osm_id of feature 22780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811042 of field osm_id of feature 22781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811043 of field osm_id of feature 22782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811044 of field osm_id of feature 22783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811045 of field osm_id of feature 22784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811045 of field osm_id of feature 22785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811047 of field osm_id of feature 22786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811048 of field osm_id of feature 22787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811058 of field osm_id of feature 22788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811634 of field osm_id of feature 22789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811635 of field osm_id of feature 22790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811636 of field osm_id of feature 22791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811637 of field osm_id of feature 22792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811644 of field osm_id of feature 22793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464811645 of field osm_id of feature 22794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812322 of field osm_id of feature 22795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812323 of field osm_id of feature 22796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812324 of field osm_id of feature 22797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812325 of field osm_id of feature 22798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812326 of field osm_id of feature 22799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812327 of field osm_id of feature 22800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812328 of field osm_id of feature 22801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812329 of field osm_id of feature 22802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464812330 of field osm_id of feature 22803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464813513 of field osm_id of feature 22804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464813656 of field osm_id of feature 22805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464813658 of field osm_id of feature 22806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464814549 of field osm_id of feature 22807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464814551 of field osm_id of feature 22808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464814553 of field osm_id of feature 22809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464814555 of field osm_id of feature 22810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464820669 of field osm_id of feature 22811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464820670 of field osm_id of feature 22812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464820674 of field osm_id of feature 22813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464820675 of field osm_id of feature 22814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464820680 of field osm_id of feature 22815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464821758 of field osm_id of feature 22816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464821759 of field osm_id of feature 22817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822166 of field osm_id of feature 22818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822170 of field osm_id of feature 22819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822173 of field osm_id of feature 22820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822175 of field osm_id of feature 22821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822178 of field osm_id of feature 22822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822179 of field osm_id of feature 22823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822182 of field osm_id of feature 22824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822184 of field osm_id of feature 22825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822186 of field osm_id of feature 22826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822187 of field osm_id of feature 22827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822188 of field osm_id of feature 22828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822189 of field osm_id of feature 22829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822190 of field osm_id of feature 22830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822192 of field osm_id of feature 22831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822193 of field osm_id of feature 22832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822194 of field osm_id of feature 22833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822195 of field osm_id of feature 22834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822201 of field osm_id of feature 22835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822237 of field osm_id of feature 22836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822257 of field osm_id of feature 22837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822261 of field osm_id of feature 22838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822265 of field osm_id of feature 22839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822278 of field osm_id of feature 22840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822279 of field osm_id of feature 22841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822280 of field osm_id of feature 22842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822281 of field osm_id of feature 22843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822283 of field osm_id of feature 22844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464822286 of field osm_id of feature 22845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464824861 of field osm_id of feature 22846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464826978 of field osm_id of feature 22847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464826981 of field osm_id of feature 22848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464826988 of field osm_id of feature 22849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464826992 of field osm_id of feature 22850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464826998 of field osm_id of feature 22851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827075 of field osm_id of feature 22852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827076 of field osm_id of feature 22853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827078 of field osm_id of feature 22854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827085 of field osm_id of feature 22855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827089 of field osm_id of feature 22856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827090 of field osm_id of feature 22857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827092 of field osm_id of feature 22858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827093 of field osm_id of feature 22859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827097 of field osm_id of feature 22860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827098 of field osm_id of feature 22861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827099 of field osm_id of feature 22862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827100 of field osm_id of feature 22863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827105 of field osm_id of feature 22864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827106 of field osm_id of feature 22865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827107 of field osm_id of feature 22866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827112 of field osm_id of feature 22867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827113 of field osm_id of feature 22868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827114 of field osm_id of feature 22869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827115 of field osm_id of feature 22870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827640 of field osm_id of feature 22871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827641 of field osm_id of feature 22872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827642 of field osm_id of feature 22873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827643 of field osm_id of feature 22874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827644 of field osm_id of feature 22875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827645 of field osm_id of feature 22876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827646 of field osm_id of feature 22877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464827647 of field osm_id of feature 22878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464829410 of field osm_id of feature 22879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464829411 of field osm_id of feature 22880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464829412 of field osm_id of feature 22881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464829418 of field osm_id of feature 22882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464829422 of field osm_id of feature 22883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830199 of field osm_id of feature 22884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830200 of field osm_id of feature 22885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830201 of field osm_id of feature 22886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830222 of field osm_id of feature 22887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830267 of field osm_id of feature 22888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830268 of field osm_id of feature 22889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830269 of field osm_id of feature 22890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830270 of field osm_id of feature 22891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830363 of field osm_id of feature 22892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830371 of field osm_id of feature 22893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464830701 of field osm_id of feature 22894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834237 of field osm_id of feature 22895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834244 of field osm_id of feature 22896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834245 of field osm_id of feature 22897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834246 of field osm_id of feature 22898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834247 of field osm_id of feature 22899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464834248 of field osm_id of feature 22900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836684 of field osm_id of feature 22901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836686 of field osm_id of feature 22902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836691 of field osm_id of feature 22903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836694 of field osm_id of feature 22904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836695 of field osm_id of feature 22905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836696 of field osm_id of feature 22906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836697 of field osm_id of feature 22907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836698 of field osm_id of feature 22908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836701 of field osm_id of feature 22909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836702 of field osm_id of feature 22910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836703 of field osm_id of feature 22911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836704 of field osm_id of feature 22912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464836707 of field osm_id of feature 22913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464837854 of field osm_id of feature 22914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464837855 of field osm_id of feature 22915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464837856 of field osm_id of feature 22916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464837861 of field osm_id of feature 22917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464837862 of field osm_id of feature 22918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464958957 of field osm_id of feature 22919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464958958 of field osm_id of feature 22920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464958961 of field osm_id of feature 22921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960708 of field osm_id of feature 22922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960709 of field osm_id of feature 22923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960710 of field osm_id of feature 22924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960711 of field osm_id of feature 22925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960712 of field osm_id of feature 22926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960713 of field osm_id of feature 22927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960728 of field osm_id of feature 22928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960731 of field osm_id of feature 22929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960732 of field osm_id of feature 22930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960733 of field osm_id of feature 22931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960734 of field osm_id of feature 22932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960735 of field osm_id of feature 22933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960736 of field osm_id of feature 22934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960737 of field osm_id of feature 22935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960738 of field osm_id of feature 22936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960741 of field osm_id of feature 22937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960742 of field osm_id of feature 22938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960744 of field osm_id of feature 22939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960745 of field osm_id of feature 22940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960746 of field osm_id of feature 22941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960748 of field osm_id of feature 22942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960749 of field osm_id of feature 22943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960750 of field osm_id of feature 22944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960751 of field osm_id of feature 22945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960752 of field osm_id of feature 22946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960755 of field osm_id of feature 22947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960756 of field osm_id of feature 22948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960757 of field osm_id of feature 22949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960758 of field osm_id of feature 22950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960763 of field osm_id of feature 22951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960767 of field osm_id of feature 22952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960768 of field osm_id of feature 22953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960769 of field osm_id of feature 22954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960770 of field osm_id of feature 22955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960771 of field osm_id of feature 22956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960772 of field osm_id of feature 22957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960773 of field osm_id of feature 22958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960774 of field osm_id of feature 22959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960776 of field osm_id of feature 22960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960777 of field osm_id of feature 22961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960778 of field osm_id of feature 22962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464960779 of field osm_id of feature 22963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961006 of field osm_id of feature 22964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961007 of field osm_id of feature 22965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961729 of field osm_id of feature 22966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961730 of field osm_id of feature 22967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961731 of field osm_id of feature 22968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961732 of field osm_id of feature 22969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961733 of field osm_id of feature 22970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961734 of field osm_id of feature 22971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961735 of field osm_id of feature 22972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464961736 of field osm_id of feature 22973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464964279 of field osm_id of feature 22974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464964804 of field osm_id of feature 22975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966307 of field osm_id of feature 22976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966308 of field osm_id of feature 22977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966309 of field osm_id of feature 22978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966310 of field osm_id of feature 22979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966311 of field osm_id of feature 22980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464966312 of field osm_id of feature 22981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967804 of field osm_id of feature 22982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967805 of field osm_id of feature 22983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967806 of field osm_id of feature 22984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967807 of field osm_id of feature 22985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967807 of field osm_id of feature 22986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967808 of field osm_id of feature 22987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967809 of field osm_id of feature 22988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967810 of field osm_id of feature 22989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464967811 of field osm_id of feature 22990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978436 of field osm_id of feature 22991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978439 of field osm_id of feature 22992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978441 of field osm_id of feature 22993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978443 of field osm_id of feature 22994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978444 of field osm_id of feature 22995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978449 of field osm_id of feature 22996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978451 of field osm_id of feature 22997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978453 of field osm_id of feature 22998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978453 of field osm_id of feature 22999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978455 of field osm_id of feature 23000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978455 of field osm_id of feature 23001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978457 of field osm_id of feature 23002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978457 of field osm_id of feature 23003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978775 of field osm_id of feature 23004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978776 of field osm_id of feature 23005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978778 of field osm_id of feature 23006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464978780 of field osm_id of feature 23007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981413 of field osm_id of feature 23008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981414 of field osm_id of feature 23009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981415 of field osm_id of feature 23010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981417 of field osm_id of feature 23011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981419 of field osm_id of feature 23012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464981421 of field osm_id of feature 23013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464983323 of field osm_id of feature 23014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985459 of field osm_id of feature 23015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985734 of field osm_id of feature 23016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985735 of field osm_id of feature 23017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985737 of field osm_id of feature 23018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985738 of field osm_id of feature 23019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985740 of field osm_id of feature 23020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985741 of field osm_id of feature 23021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985742 of field osm_id of feature 23022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985775 of field osm_id of feature 23023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985814 of field osm_id of feature 23024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985815 of field osm_id of feature 23025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985858 of field osm_id of feature 23026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985859 of field osm_id of feature 23027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985860 of field osm_id of feature 23028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985861 of field osm_id of feature 23029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985865 of field osm_id of feature 23030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985866 of field osm_id of feature 23031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985867 of field osm_id of feature 23032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985868 of field osm_id of feature 23033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985869 of field osm_id of feature 23034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985870 of field osm_id of feature 23035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985871 of field osm_id of feature 23036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985872 of field osm_id of feature 23037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985873 of field osm_id of feature 23038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985874 of field osm_id of feature 23039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985875 of field osm_id of feature 23040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985876 of field osm_id of feature 23041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464985877 of field osm_id of feature 23042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986021 of field osm_id of feature 23043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986697 of field osm_id of feature 23044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986698 of field osm_id of feature 23045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986699 of field osm_id of feature 23046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986700 of field osm_id of feature 23047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986701 of field osm_id of feature 23048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986702 of field osm_id of feature 23049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986703 of field osm_id of feature 23050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986704 of field osm_id of feature 23051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986705 of field osm_id of feature 23052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464986706 of field osm_id of feature 23053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464987939 of field osm_id of feature 23054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464987940 of field osm_id of feature 23055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464997541 of field osm_id of feature 23056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 464997562 of field osm_id of feature 23057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465002402 of field osm_id of feature 23058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465002403 of field osm_id of feature 23059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465002404 of field osm_id of feature 23060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465002405 of field osm_id of feature 23061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465002407 of field osm_id of feature 23062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465004143 of field osm_id of feature 23063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465004144 of field osm_id of feature 23064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465004145 of field osm_id of feature 23065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013238 of field osm_id of feature 23066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013239 of field osm_id of feature 23067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013240 of field osm_id of feature 23068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013241 of field osm_id of feature 23069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013242 of field osm_id of feature 23070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013243 of field osm_id of feature 23071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013244 of field osm_id of feature 23072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013245 of field osm_id of feature 23073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013246 of field osm_id of feature 23074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013248 of field osm_id of feature 23075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013249 of field osm_id of feature 23076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013250 of field osm_id of feature 23077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013251 of field osm_id of feature 23078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013253 of field osm_id of feature 23079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013273 of field osm_id of feature 23080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013275 of field osm_id of feature 23081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013276 of field osm_id of feature 23082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013282 of field osm_id of feature 23083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013283 of field osm_id of feature 23084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013299 of field osm_id of feature 23085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013304 of field osm_id of feature 23086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013327 of field osm_id of feature 23087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013328 of field osm_id of feature 23088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013329 of field osm_id of feature 23089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465013330 of field osm_id of feature 23090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019700 of field osm_id of feature 23091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019701 of field osm_id of feature 23092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019702 of field osm_id of feature 23093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019703 of field osm_id of feature 23094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019704 of field osm_id of feature 23095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019706 of field osm_id of feature 23096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019707 of field osm_id of feature 23097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019708 of field osm_id of feature 23098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019709 of field osm_id of feature 23099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019710 of field osm_id of feature 23100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019712 of field osm_id of feature 23101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019713 of field osm_id of feature 23102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019714 of field osm_id of feature 23103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019715 of field osm_id of feature 23104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019716 of field osm_id of feature 23105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019717 of field osm_id of feature 23106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019718 of field osm_id of feature 23107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019719 of field osm_id of feature 23108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019720 of field osm_id of feature 23109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019722 of field osm_id of feature 23110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019723 of field osm_id of feature 23111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019724 of field osm_id of feature 23112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019725 of field osm_id of feature 23113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019727 of field osm_id of feature 23114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019728 of field osm_id of feature 23115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019728 of field osm_id of feature 23116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465019729 of field osm_id of feature 23117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028912 of field osm_id of feature 23118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028922 of field osm_id of feature 23119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028923 of field osm_id of feature 23120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028952 of field osm_id of feature 23121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028963 of field osm_id of feature 23122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465028966 of field osm_id of feature 23123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029223 of field osm_id of feature 23124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029224 of field osm_id of feature 23125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029225 of field osm_id of feature 23126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029226 of field osm_id of feature 23127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029227 of field osm_id of feature 23128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029228 of field osm_id of feature 23129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029229 of field osm_id of feature 23130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029230 of field osm_id of feature 23131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029231 of field osm_id of feature 23132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029232 of field osm_id of feature 23133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029233 of field osm_id of feature 23134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029234 of field osm_id of feature 23135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029235 of field osm_id of feature 23136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465029517 of field osm_id of feature 23137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031014 of field osm_id of feature 23138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031015 of field osm_id of feature 23139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031016 of field osm_id of feature 23140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031019 of field osm_id of feature 23141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031020 of field osm_id of feature 23142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031022 of field osm_id of feature 23143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031023 of field osm_id of feature 23144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465031024 of field osm_id of feature 23145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465036748 of field osm_id of feature 23146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465036749 of field osm_id of feature 23147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465036750 of field osm_id of feature 23148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465038053 of field osm_id of feature 23149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465038054 of field osm_id of feature 23150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465038056 of field osm_id of feature 23151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465041041 of field osm_id of feature 23152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465041042 of field osm_id of feature 23153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043179 of field osm_id of feature 23154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043323 of field osm_id of feature 23155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043324 of field osm_id of feature 23156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043326 of field osm_id of feature 23157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043327 of field osm_id of feature 23158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043328 of field osm_id of feature 23159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043329 of field osm_id of feature 23160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043330 of field osm_id of feature 23161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465043331 of field osm_id of feature 23162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465048107 of field osm_id of feature 23163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465052407 of field osm_id of feature 23164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465052409 of field osm_id of feature 23165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054720 of field osm_id of feature 23166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054727 of field osm_id of feature 23167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054729 of field osm_id of feature 23168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054731 of field osm_id of feature 23169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054739 of field osm_id of feature 23170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054741 of field osm_id of feature 23171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465054744 of field osm_id of feature 23172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055328 of field osm_id of feature 23173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055329 of field osm_id of feature 23174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055345 of field osm_id of feature 23175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055348 of field osm_id of feature 23176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055349 of field osm_id of feature 23177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055357 of field osm_id of feature 23178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055358 of field osm_id of feature 23179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055364 of field osm_id of feature 23180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055378 of field osm_id of feature 23181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055379 of field osm_id of feature 23182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055380 of field osm_id of feature 23183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055651 of field osm_id of feature 23184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055652 of field osm_id of feature 23185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055669 of field osm_id of feature 23186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465055728 of field osm_id of feature 23187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056798 of field osm_id of feature 23188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056800 of field osm_id of feature 23189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056803 of field osm_id of feature 23190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056806 of field osm_id of feature 23191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056809 of field osm_id of feature 23192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056811 of field osm_id of feature 23193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056811 of field osm_id of feature 23194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056815 of field osm_id of feature 23195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056817 of field osm_id of feature 23196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056819 of field osm_id of feature 23197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056819 of field osm_id of feature 23198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056820 of field osm_id of feature 23199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465056976 of field osm_id of feature 23200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059828 of field osm_id of feature 23201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059832 of field osm_id of feature 23202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059833 of field osm_id of feature 23203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059834 of field osm_id of feature 23204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059835 of field osm_id of feature 23205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465059836 of field osm_id of feature 23206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465060038 of field osm_id of feature 23207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063280 of field osm_id of feature 23208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063281 of field osm_id of feature 23209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063284 of field osm_id of feature 23210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063286 of field osm_id of feature 23211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063291 of field osm_id of feature 23212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063303 of field osm_id of feature 23213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063443 of field osm_id of feature 23214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063443 of field osm_id of feature 23215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465063467 of field osm_id of feature 23216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465064163 of field osm_id of feature 23217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465064168 of field osm_id of feature 23218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465123975 of field osm_id of feature 23219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465123976 of field osm_id of feature 23220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465124396 of field osm_id of feature 23221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465124397 of field osm_id of feature 23222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465217087 of field osm_id of feature 23223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226133 of field osm_id of feature 23224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226133 of field osm_id of feature 23225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226134 of field osm_id of feature 23226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226134 of field osm_id of feature 23227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226135 of field osm_id of feature 23228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226136 of field osm_id of feature 23229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226137 of field osm_id of feature 23230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226138 of field osm_id of feature 23231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226139 of field osm_id of feature 23232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226140 of field osm_id of feature 23233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226141 of field osm_id of feature 23234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226141 of field osm_id of feature 23235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226142 of field osm_id of feature 23236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226142 of field osm_id of feature 23237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226143 of field osm_id of feature 23238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226144 of field osm_id of feature 23239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226145 of field osm_id of feature 23240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226145 of field osm_id of feature 23241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226565 of field osm_id of feature 23242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465226566 of field osm_id of feature 23243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227142 of field osm_id of feature 23244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227143 of field osm_id of feature 23245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227148 of field osm_id of feature 23246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227149 of field osm_id of feature 23247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227158 of field osm_id of feature 23248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227160 of field osm_id of feature 23249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227161 of field osm_id of feature 23250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227164 of field osm_id of feature 23251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227165 of field osm_id of feature 23252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227197 of field osm_id of feature 23253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465227198 of field osm_id of feature 23254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230750 of field osm_id of feature 23255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230751 of field osm_id of feature 23256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230752 of field osm_id of feature 23257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230753 of field osm_id of feature 23258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230900 of field osm_id of feature 23259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465230902 of field osm_id of feature 23260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236675 of field osm_id of feature 23261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236676 of field osm_id of feature 23262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236677 of field osm_id of feature 23263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236678 of field osm_id of feature 23264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236679 of field osm_id of feature 23265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236680 of field osm_id of feature 23266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236681 of field osm_id of feature 23267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236682 of field osm_id of feature 23268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236715 of field osm_id of feature 23269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236716 of field osm_id of feature 23270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236717 of field osm_id of feature 23271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236733 of field osm_id of feature 23272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236734 of field osm_id of feature 23273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236793 of field osm_id of feature 23274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236794 of field osm_id of feature 23275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236795 of field osm_id of feature 23276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236817 of field osm_id of feature 23277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236819 of field osm_id of feature 23278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236874 of field osm_id of feature 23279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236882 of field osm_id of feature 23280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236897 of field osm_id of feature 23281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236898 of field osm_id of feature 23282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236902 of field osm_id of feature 23283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465236903 of field osm_id of feature 23284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239955 of field osm_id of feature 23285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239960 of field osm_id of feature 23286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239961 of field osm_id of feature 23287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239962 of field osm_id of feature 23288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239963 of field osm_id of feature 23289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239964 of field osm_id of feature 23290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239965 of field osm_id of feature 23291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239966 of field osm_id of feature 23292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239976 of field osm_id of feature 23293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239977 of field osm_id of feature 23294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239978 of field osm_id of feature 23295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239979 of field osm_id of feature 23296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239981 of field osm_id of feature 23297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239982 of field osm_id of feature 23298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239993 of field osm_id of feature 23299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239994 of field osm_id of feature 23300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239995 of field osm_id of feature 23301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239996 of field osm_id of feature 23302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239997 of field osm_id of feature 23303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239998 of field osm_id of feature 23304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465239999 of field osm_id of feature 23305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465240000 of field osm_id of feature 23306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465240607 of field osm_id of feature 23307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465240785 of field osm_id of feature 23308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465240798 of field osm_id of feature 23309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242106 of field osm_id of feature 23310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242107 of field osm_id of feature 23311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242108 of field osm_id of feature 23312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242109 of field osm_id of feature 23313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242110 of field osm_id of feature 23314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242111 of field osm_id of feature 23315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242112 of field osm_id of feature 23316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242113 of field osm_id of feature 23317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242114 of field osm_id of feature 23318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242115 of field osm_id of feature 23319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242116 of field osm_id of feature 23320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242117 of field osm_id of feature 23321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242118 of field osm_id of feature 23322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242464 of field osm_id of feature 23323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465242973 of field osm_id of feature 23324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248891 of field osm_id of feature 23325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248893 of field osm_id of feature 23326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248894 of field osm_id of feature 23327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248895 of field osm_id of feature 23328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248897 of field osm_id of feature 23329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248901 of field osm_id of feature 23330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248903 of field osm_id of feature 23331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248904 of field osm_id of feature 23332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248906 of field osm_id of feature 23333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465248907 of field osm_id of feature 23334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256067 of field osm_id of feature 23335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256068 of field osm_id of feature 23336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256072 of field osm_id of feature 23337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256073 of field osm_id of feature 23338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256077 of field osm_id of feature 23339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256383 of field osm_id of feature 23340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256392 of field osm_id of feature 23341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256393 of field osm_id of feature 23342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256395 of field osm_id of feature 23343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256396 of field osm_id of feature 23344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465256398 of field osm_id of feature 23345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465258282 of field osm_id of feature 23346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465258314 of field osm_id of feature 23347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465258855 of field osm_id of feature 23348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465258858 of field osm_id of feature 23349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465259911 of field osm_id of feature 23350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465259912 of field osm_id of feature 23351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465261019 of field osm_id of feature 23352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465261026 of field osm_id of feature 23353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465261027 of field osm_id of feature 23354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265448 of field osm_id of feature 23355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265449 of field osm_id of feature 23356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265450 of field osm_id of feature 23357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265451 of field osm_id of feature 23358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265452 of field osm_id of feature 23359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265453 of field osm_id of feature 23360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265455 of field osm_id of feature 23361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265456 of field osm_id of feature 23362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265457 of field osm_id of feature 23363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465265458 of field osm_id of feature 23364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465268197 of field osm_id of feature 23365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465268198 of field osm_id of feature 23366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269954 of field osm_id of feature 23367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269955 of field osm_id of feature 23368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269956 of field osm_id of feature 23369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269957 of field osm_id of feature 23370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269958 of field osm_id of feature 23371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269959 of field osm_id of feature 23372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269960 of field osm_id of feature 23373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269961 of field osm_id of feature 23374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269961 of field osm_id of feature 23375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269962 of field osm_id of feature 23376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465269962 of field osm_id of feature 23377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465270688 of field osm_id of feature 23378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465270689 of field osm_id of feature 23379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465270702 of field osm_id of feature 23380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465270703 of field osm_id of feature 23381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465272214 of field osm_id of feature 23382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465272215 of field osm_id of feature 23383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465272217 of field osm_id of feature 23384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465274271 of field osm_id of feature 23385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465275791 of field osm_id of feature 23386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465275792 of field osm_id of feature 23387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465275793 of field osm_id of feature 23388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465275794 of field osm_id of feature 23389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465276672 of field osm_id of feature 23390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465276773 of field osm_id of feature 23391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465276774 of field osm_id of feature 23392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279711 of field osm_id of feature 23393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279715 of field osm_id of feature 23394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279728 of field osm_id of feature 23395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279731 of field osm_id of feature 23396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279732 of field osm_id of feature 23397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279733 of field osm_id of feature 23398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279734 of field osm_id of feature 23399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465279735 of field osm_id of feature 23400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282330 of field osm_id of feature 23401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282331 of field osm_id of feature 23402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282331 of field osm_id of feature 23403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282334 of field osm_id of feature 23404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282335 of field osm_id of feature 23405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465282337 of field osm_id of feature 23406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283371 of field osm_id of feature 23407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283372 of field osm_id of feature 23408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283375 of field osm_id of feature 23409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283377 of field osm_id of feature 23410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283378 of field osm_id of feature 23411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283380 of field osm_id of feature 23412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283401 of field osm_id of feature 23413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283689 of field osm_id of feature 23414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283773 of field osm_id of feature 23415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283774 of field osm_id of feature 23416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283775 of field osm_id of feature 23417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283776 of field osm_id of feature 23418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465283777 of field osm_id of feature 23419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284003 of field osm_id of feature 23420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284004 of field osm_id of feature 23421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284005 of field osm_id of feature 23422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284007 of field osm_id of feature 23423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284839 of field osm_id of feature 23424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284844 of field osm_id of feature 23425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284845 of field osm_id of feature 23426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284846 of field osm_id of feature 23427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465284850 of field osm_id of feature 23428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465286044 of field osm_id of feature 23429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465291771 of field osm_id of feature 23430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465291772 of field osm_id of feature 23431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465291773 of field osm_id of feature 23432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465291962 of field osm_id of feature 23433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465291993 of field osm_id of feature 23434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292069 of field osm_id of feature 23435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292070 of field osm_id of feature 23436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292071 of field osm_id of feature 23437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292071 of field osm_id of feature 23438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292071 of field osm_id of feature 23439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465292072 of field osm_id of feature 23440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465293288 of field osm_id of feature 23441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465293289 of field osm_id of feature 23442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465293292 of field osm_id of feature 23443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465293292 of field osm_id of feature 23444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465294875 of field osm_id of feature 23445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465294876 of field osm_id of feature 23446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465294877 of field osm_id of feature 23447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465294878 of field osm_id of feature 23448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465294879 of field osm_id of feature 23449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465297739 of field osm_id of feature 23450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465297740 of field osm_id of feature 23451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465297741 of field osm_id of feature 23452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465297742 of field osm_id of feature 23453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307050 of field osm_id of feature 23454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307051 of field osm_id of feature 23455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307052 of field osm_id of feature 23456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307053 of field osm_id of feature 23457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307054 of field osm_id of feature 23458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307055 of field osm_id of feature 23459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307056 of field osm_id of feature 23460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307057 of field osm_id of feature 23461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307058 of field osm_id of feature 23462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307059 of field osm_id of feature 23463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307060 of field osm_id of feature 23464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307062 of field osm_id of feature 23465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307063 of field osm_id of feature 23466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307066 of field osm_id of feature 23467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465307067 of field osm_id of feature 23468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309664 of field osm_id of feature 23469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309669 of field osm_id of feature 23470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309675 of field osm_id of feature 23471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309676 of field osm_id of feature 23472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309677 of field osm_id of feature 23473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309684 of field osm_id of feature 23474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309691 of field osm_id of feature 23475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309695 of field osm_id of feature 23476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309696 of field osm_id of feature 23477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309697 of field osm_id of feature 23478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465309733 of field osm_id of feature 23479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312328 of field osm_id of feature 23480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312330 of field osm_id of feature 23481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312336 of field osm_id of feature 23482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312343 of field osm_id of feature 23483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312346 of field osm_id of feature 23484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312349 of field osm_id of feature 23485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312352 of field osm_id of feature 23486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312355 of field osm_id of feature 23487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312357 of field osm_id of feature 23488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312361 of field osm_id of feature 23489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312364 of field osm_id of feature 23490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465312366 of field osm_id of feature 23491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465313100 of field osm_id of feature 23492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314111 of field osm_id of feature 23493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314112 of field osm_id of feature 23494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314120 of field osm_id of feature 23495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314121 of field osm_id of feature 23496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314273 of field osm_id of feature 23497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314274 of field osm_id of feature 23498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314275 of field osm_id of feature 23499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314276 of field osm_id of feature 23500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314277 of field osm_id of feature 23501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314278 of field osm_id of feature 23502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314280 of field osm_id of feature 23503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314283 of field osm_id of feature 23504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314284 of field osm_id of feature 23505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314690 of field osm_id of feature 23506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314691 of field osm_id of feature 23507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314692 of field osm_id of feature 23508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314894 of field osm_id of feature 23509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314895 of field osm_id of feature 23510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314990 of field osm_id of feature 23511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314992 of field osm_id of feature 23512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465314993 of field osm_id of feature 23513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465427441 of field osm_id of feature 23514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465427442 of field osm_id of feature 23515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465427445 of field osm_id of feature 23516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465427446 of field osm_id of feature 23517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465431151 of field osm_id of feature 23518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465432867 of field osm_id of feature 23519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465432868 of field osm_id of feature 23520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465432869 of field osm_id of feature 23521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465432870 of field osm_id of feature 23522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465433162 of field osm_id of feature 23523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465433162 of field osm_id of feature 23524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465433163 of field osm_id of feature 23525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465433164 of field osm_id of feature 23526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465437247 of field osm_id of feature 23527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465437249 of field osm_id of feature 23528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465437250 of field osm_id of feature 23529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465437251 of field osm_id of feature 23530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465438411 of field osm_id of feature 23531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465439519 of field osm_id of feature 23532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442334 of field osm_id of feature 23533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442336 of field osm_id of feature 23534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442339 of field osm_id of feature 23535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442340 of field osm_id of feature 23536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442345 of field osm_id of feature 23537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442352 of field osm_id of feature 23538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442354 of field osm_id of feature 23539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442355 of field osm_id of feature 23540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442363 of field osm_id of feature 23541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442374 of field osm_id of feature 23542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442375 of field osm_id of feature 23543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442377 of field osm_id of feature 23544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442380 of field osm_id of feature 23545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442463 of field osm_id of feature 23546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442464 of field osm_id of feature 23547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442465 of field osm_id of feature 23548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465442466 of field osm_id of feature 23549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444144 of field osm_id of feature 23550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444145 of field osm_id of feature 23551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444146 of field osm_id of feature 23552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444147 of field osm_id of feature 23553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444148 of field osm_id of feature 23554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444150 of field osm_id of feature 23555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444152 of field osm_id of feature 23556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444155 of field osm_id of feature 23557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444155 of field osm_id of feature 23558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444157 of field osm_id of feature 23559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465444160 of field osm_id of feature 23560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465446311 of field osm_id of feature 23561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465446312 of field osm_id of feature 23562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465447990 of field osm_id of feature 23563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465447993 of field osm_id of feature 23564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465447994 of field osm_id of feature 23565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465447995 of field osm_id of feature 23566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451881 of field osm_id of feature 23567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451884 of field osm_id of feature 23568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451888 of field osm_id of feature 23569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451891 of field osm_id of feature 23570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451896 of field osm_id of feature 23571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451910 of field osm_id of feature 23572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451923 of field osm_id of feature 23573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465451932 of field osm_id of feature 23574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452246 of field osm_id of feature 23575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452247 of field osm_id of feature 23576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452248 of field osm_id of feature 23577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452251 of field osm_id of feature 23578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452699 of field osm_id of feature 23579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452700 of field osm_id of feature 23580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452701 of field osm_id of feature 23581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452702 of field osm_id of feature 23582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452703 of field osm_id of feature 23583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465452704 of field osm_id of feature 23584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465455086 of field osm_id of feature 23585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465455087 of field osm_id of feature 23586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458190 of field osm_id of feature 23587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458232 of field osm_id of feature 23588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458233 of field osm_id of feature 23589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458234 of field osm_id of feature 23590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458235 of field osm_id of feature 23591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465458236 of field osm_id of feature 23592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460498 of field osm_id of feature 23593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460543 of field osm_id of feature 23594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460547 of field osm_id of feature 23595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460548 of field osm_id of feature 23596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460549 of field osm_id of feature 23597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460550 of field osm_id of feature 23598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460551 of field osm_id of feature 23599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460552 of field osm_id of feature 23600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460553 of field osm_id of feature 23601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460554 of field osm_id of feature 23602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460555 of field osm_id of feature 23603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460556 of field osm_id of feature 23604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460557 of field osm_id of feature 23605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460558 of field osm_id of feature 23606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460559 of field osm_id of feature 23607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460560 of field osm_id of feature 23608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460561 of field osm_id of feature 23609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460562 of field osm_id of feature 23610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460563 of field osm_id of feature 23611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465460566 of field osm_id of feature 23612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465461959 of field osm_id of feature 23613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465461960 of field osm_id of feature 23614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465461961 of field osm_id of feature 23615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465461962 of field osm_id of feature 23616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463309 of field osm_id of feature 23617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463310 of field osm_id of feature 23618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463322 of field osm_id of feature 23619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463330 of field osm_id of feature 23620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463331 of field osm_id of feature 23621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463538 of field osm_id of feature 23622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463713 of field osm_id of feature 23623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463714 of field osm_id of feature 23624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463715 of field osm_id of feature 23625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463716 of field osm_id of feature 23626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463719 of field osm_id of feature 23627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463720 of field osm_id of feature 23628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463721 of field osm_id of feature 23629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463722 of field osm_id of feature 23630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463725 of field osm_id of feature 23631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463726 of field osm_id of feature 23632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463727 of field osm_id of feature 23633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465463731 of field osm_id of feature 23634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465464350 of field osm_id of feature 23635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465464350 of field osm_id of feature 23636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466216 of field osm_id of feature 23637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466217 of field osm_id of feature 23638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466219 of field osm_id of feature 23639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466221 of field osm_id of feature 23640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466222 of field osm_id of feature 23641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466224 of field osm_id of feature 23642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466226 of field osm_id of feature 23643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466228 of field osm_id of feature 23644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466229 of field osm_id of feature 23645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466231 of field osm_id of feature 23646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466233 of field osm_id of feature 23647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466234 of field osm_id of feature 23648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466236 of field osm_id of feature 23649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466236 of field osm_id of feature 23650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466238 of field osm_id of feature 23651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466240 of field osm_id of feature 23652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465466240 of field osm_id of feature 23653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467896 of field osm_id of feature 23654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467898 of field osm_id of feature 23655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467899 of field osm_id of feature 23656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467901 of field osm_id of feature 23657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467903 of field osm_id of feature 23658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467904 of field osm_id of feature 23659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467905 of field osm_id of feature 23660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465467906 of field osm_id of feature 23661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465468181 of field osm_id of feature 23662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465468224 of field osm_id of feature 23663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465468228 of field osm_id of feature 23664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465468235 of field osm_id of feature 23665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465468238 of field osm_id of feature 23666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465470434 of field osm_id of feature 23667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472907 of field osm_id of feature 23668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472909 of field osm_id of feature 23669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472912 of field osm_id of feature 23670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472917 of field osm_id of feature 23671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472919 of field osm_id of feature 23672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472923 of field osm_id of feature 23673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472925 of field osm_id of feature 23674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465472934 of field osm_id of feature 23675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465490248 of field osm_id of feature 23676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465490250 of field osm_id of feature 23677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465490255 of field osm_id of feature 23678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465490349 of field osm_id of feature 23679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465493962 of field osm_id of feature 23680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465493963 of field osm_id of feature 23681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465493965 of field osm_id of feature 23682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465493966 of field osm_id of feature 23683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465493967 of field osm_id of feature 23684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498183 of field osm_id of feature 23685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498184 of field osm_id of feature 23686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498814 of field osm_id of feature 23687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498856 of field osm_id of feature 23688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498857 of field osm_id of feature 23689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465498858 of field osm_id of feature 23690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499100 of field osm_id of feature 23691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499101 of field osm_id of feature 23692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499102 of field osm_id of feature 23693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499103 of field osm_id of feature 23694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499121 of field osm_id of feature 23695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499122 of field osm_id of feature 23696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499124 of field osm_id of feature 23697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499126 of field osm_id of feature 23698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499133 of field osm_id of feature 23699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499134 of field osm_id of feature 23700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499138 of field osm_id of feature 23701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499140 of field osm_id of feature 23702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465499693 of field osm_id of feature 23703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500903 of field osm_id of feature 23704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500904 of field osm_id of feature 23705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500905 of field osm_id of feature 23706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500906 of field osm_id of feature 23707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500916 of field osm_id of feature 23708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500917 of field osm_id of feature 23709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500918 of field osm_id of feature 23710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500919 of field osm_id of feature 23711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465500920 of field osm_id of feature 23712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465501538 of field osm_id of feature 23713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465501539 of field osm_id of feature 23714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465502349 of field osm_id of feature 23715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465502367 of field osm_id of feature 23716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465502368 of field osm_id of feature 23717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465502370 of field osm_id of feature 23718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465506941 of field osm_id of feature 23719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465506953 of field osm_id of feature 23720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465506954 of field osm_id of feature 23721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465513595 of field osm_id of feature 23722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465513597 of field osm_id of feature 23723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515637 of field osm_id of feature 23724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515638 of field osm_id of feature 23725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515639 of field osm_id of feature 23726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515640 of field osm_id of feature 23727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515643 of field osm_id of feature 23728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465515644 of field osm_id of feature 23729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465518991 of field osm_id of feature 23730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465519352 of field osm_id of feature 23731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523209 of field osm_id of feature 23732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523223 of field osm_id of feature 23733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523224 of field osm_id of feature 23734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523225 of field osm_id of feature 23735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523226 of field osm_id of feature 23736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523227 of field osm_id of feature 23737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523228 of field osm_id of feature 23738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523230 of field osm_id of feature 23739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523231 of field osm_id of feature 23740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523232 of field osm_id of feature 23741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523233 of field osm_id of feature 23742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523234 of field osm_id of feature 23743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523235 of field osm_id of feature 23744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523236 of field osm_id of feature 23745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523245 of field osm_id of feature 23746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523246 of field osm_id of feature 23747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523247 of field osm_id of feature 23748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523248 of field osm_id of feature 23749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523249 of field osm_id of feature 23750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523250 of field osm_id of feature 23751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523251 of field osm_id of feature 23752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523252 of field osm_id of feature 23753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523253 of field osm_id of feature 23754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523254 of field osm_id of feature 23755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523257 of field osm_id of feature 23756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523258 of field osm_id of feature 23757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523259 of field osm_id of feature 23758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523263 of field osm_id of feature 23759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523264 of field osm_id of feature 23760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523265 of field osm_id of feature 23761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523266 of field osm_id of feature 23762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523267 of field osm_id of feature 23763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523268 of field osm_id of feature 23764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523296 of field osm_id of feature 23765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523885 of field osm_id of feature 23766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523886 of field osm_id of feature 23767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523887 of field osm_id of feature 23768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523888 of field osm_id of feature 23769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523889 of field osm_id of feature 23770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523892 of field osm_id of feature 23771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523893 of field osm_id of feature 23772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523894 of field osm_id of feature 23773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523895 of field osm_id of feature 23774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523896 of field osm_id of feature 23775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523897 of field osm_id of feature 23776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523898 of field osm_id of feature 23777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523899 of field osm_id of feature 23778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523901 of field osm_id of feature 23779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523902 of field osm_id of feature 23780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523903 of field osm_id of feature 23781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523904 of field osm_id of feature 23782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523905 of field osm_id of feature 23783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523906 of field osm_id of feature 23784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523907 of field osm_id of feature 23785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523908 of field osm_id of feature 23786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523909 of field osm_id of feature 23787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523912 of field osm_id of feature 23788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523913 of field osm_id of feature 23789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523914 of field osm_id of feature 23790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523915 of field osm_id of feature 23791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523916 of field osm_id of feature 23792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523920 of field osm_id of feature 23793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523921 of field osm_id of feature 23794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523922 of field osm_id of feature 23795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523923 of field osm_id of feature 23796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465523924 of field osm_id of feature 23797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465524984 of field osm_id of feature 23798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465524993 of field osm_id of feature 23799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465524995 of field osm_id of feature 23800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465524996 of field osm_id of feature 23801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525006 of field osm_id of feature 23802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525263 of field osm_id of feature 23803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525264 of field osm_id of feature 23804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525265 of field osm_id of feature 23805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525266 of field osm_id of feature 23806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525298 of field osm_id of feature 23807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525299 of field osm_id of feature 23808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525299 of field osm_id of feature 23809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525300 of field osm_id of feature 23810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465525300 of field osm_id of feature 23811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527358 of field osm_id of feature 23812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527360 of field osm_id of feature 23813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527362 of field osm_id of feature 23814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527364 of field osm_id of feature 23815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527366 of field osm_id of feature 23816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527369 of field osm_id of feature 23817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527371 of field osm_id of feature 23818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527373 of field osm_id of feature 23819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465527373 of field osm_id of feature 23820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465528369 of field osm_id of feature 23821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465528370 of field osm_id of feature 23822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465531749 of field osm_id of feature 23823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465531751 of field osm_id of feature 23824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465531753 of field osm_id of feature 23825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465533796 of field osm_id of feature 23826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465533797 of field osm_id of feature 23827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465534096 of field osm_id of feature 23828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465534097 of field osm_id of feature 23829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465534163 of field osm_id of feature 23830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465535325 of field osm_id of feature 23831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465535326 of field osm_id of feature 23832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538146 of field osm_id of feature 23833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538148 of field osm_id of feature 23834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538148 of field osm_id of feature 23835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538150 of field osm_id of feature 23836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538152 of field osm_id of feature 23837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538154 of field osm_id of feature 23838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465538156 of field osm_id of feature 23839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465543417 of field osm_id of feature 23840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465543419 of field osm_id of feature 23841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465543420 of field osm_id of feature 23842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545600 of field osm_id of feature 23843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545601 of field osm_id of feature 23844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545603 of field osm_id of feature 23845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545604 of field osm_id of feature 23846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545605 of field osm_id of feature 23847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465545606 of field osm_id of feature 23848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465562645 of field osm_id of feature 23849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465563573 of field osm_id of feature 23850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465567594 of field osm_id of feature 23851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465572681 of field osm_id of feature 23852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465573196 of field osm_id of feature 23853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465573197 of field osm_id of feature 23854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465585628 of field osm_id of feature 23855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465585628 of field osm_id of feature 23856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465589821 of field osm_id of feature 23857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465589822 of field osm_id of feature 23858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465590099 of field osm_id of feature 23859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465590102 of field osm_id of feature 23860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465591249 of field osm_id of feature 23861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465600089 of field osm_id of feature 23862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465601071 of field osm_id of feature 23863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465601073 of field osm_id of feature 23864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465605717 of field osm_id of feature 23865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465605719 of field osm_id of feature 23866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657482 of field osm_id of feature 23867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657483 of field osm_id of feature 23868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657484 of field osm_id of feature 23869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657485 of field osm_id of feature 23870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657486 of field osm_id of feature 23871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657487 of field osm_id of feature 23872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657488 of field osm_id of feature 23873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465657507 of field osm_id of feature 23874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664194 of field osm_id of feature 23875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664195 of field osm_id of feature 23876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664196 of field osm_id of feature 23877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664197 of field osm_id of feature 23878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664198 of field osm_id of feature 23879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664199 of field osm_id of feature 23880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465664200 of field osm_id of feature 23881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465672599 of field osm_id of feature 23882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465672600 of field osm_id of feature 23883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465672601 of field osm_id of feature 23884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465672610 of field osm_id of feature 23885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465672611 of field osm_id of feature 23886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465673817 of field osm_id of feature 23887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674747 of field osm_id of feature 23888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674748 of field osm_id of feature 23889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674749 of field osm_id of feature 23890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674750 of field osm_id of feature 23891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674984 of field osm_id of feature 23892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674985 of field osm_id of feature 23893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674986 of field osm_id of feature 23894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674987 of field osm_id of feature 23895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674990 of field osm_id of feature 23896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674991 of field osm_id of feature 23897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465674992 of field osm_id of feature 23898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465675025 of field osm_id of feature 23899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465682423 of field osm_id of feature 23900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465682424 of field osm_id of feature 23901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684465 of field osm_id of feature 23902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684466 of field osm_id of feature 23903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684467 of field osm_id of feature 23904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684468 of field osm_id of feature 23905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684469 of field osm_id of feature 23906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684470 of field osm_id of feature 23907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684471 of field osm_id of feature 23908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684472 of field osm_id of feature 23909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684474 of field osm_id of feature 23910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684476 of field osm_id of feature 23911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684478 of field osm_id of feature 23912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465684482 of field osm_id of feature 23913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465685703 of field osm_id of feature 23914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465685703 of field osm_id of feature 23915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687388 of field osm_id of feature 23916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687389 of field osm_id of feature 23917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687391 of field osm_id of feature 23918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687392 of field osm_id of feature 23919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687393 of field osm_id of feature 23920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687394 of field osm_id of feature 23921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687395 of field osm_id of feature 23922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687396 of field osm_id of feature 23923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687397 of field osm_id of feature 23924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687398 of field osm_id of feature 23925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687399 of field osm_id of feature 23926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687400 of field osm_id of feature 23927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687401 of field osm_id of feature 23928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465687402 of field osm_id of feature 23929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465694973 of field osm_id of feature 23930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465694974 of field osm_id of feature 23931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465697502 of field osm_id of feature 23932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465697504 of field osm_id of feature 23933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465697506 of field osm_id of feature 23934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465697509 of field osm_id of feature 23935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465697512 of field osm_id of feature 23936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465698446 of field osm_id of feature 23937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465698447 of field osm_id of feature 23938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465701322 of field osm_id of feature 23939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465701323 of field osm_id of feature 23940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465701503 of field osm_id of feature 23941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465703102 of field osm_id of feature 23942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708033 of field osm_id of feature 23943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708034 of field osm_id of feature 23944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708967 of field osm_id of feature 23945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708968 of field osm_id of feature 23946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708969 of field osm_id of feature 23947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708970 of field osm_id of feature 23948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708971 of field osm_id of feature 23949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708972 of field osm_id of feature 23950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708973 of field osm_id of feature 23951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708974 of field osm_id of feature 23952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708975 of field osm_id of feature 23953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708976 of field osm_id of feature 23954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708977 of field osm_id of feature 23955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708978 of field osm_id of feature 23956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708979 of field osm_id of feature 23957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708980 of field osm_id of feature 23958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708981 of field osm_id of feature 23959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708982 of field osm_id of feature 23960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708983 of field osm_id of feature 23961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708984 of field osm_id of feature 23962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708985 of field osm_id of feature 23963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708986 of field osm_id of feature 23964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708987 of field osm_id of feature 23965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708988 of field osm_id of feature 23966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708989 of field osm_id of feature 23967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708990 of field osm_id of feature 23968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708991 of field osm_id of feature 23969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708992 of field osm_id of feature 23970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708993 of field osm_id of feature 23971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708994 of field osm_id of feature 23972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708995 of field osm_id of feature 23973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708996 of field osm_id of feature 23974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708997 of field osm_id of feature 23975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708998 of field osm_id of feature 23976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465708999 of field osm_id of feature 23977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709000 of field osm_id of feature 23978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709001 of field osm_id of feature 23979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709002 of field osm_id of feature 23980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709003 of field osm_id of feature 23981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709004 of field osm_id of feature 23982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709005 of field osm_id of feature 23983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709006 of field osm_id of feature 23984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709008 of field osm_id of feature 23985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709010 of field osm_id of feature 23986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465709012 of field osm_id of feature 23987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465712724 of field osm_id of feature 23988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465712725 of field osm_id of feature 23989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465712954 of field osm_id of feature 23990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465713359 of field osm_id of feature 23991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718872 of field osm_id of feature 23992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718874 of field osm_id of feature 23993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718876 of field osm_id of feature 23994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718882 of field osm_id of feature 23995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718884 of field osm_id of feature 23996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465718886 of field osm_id of feature 23997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465719096 of field osm_id of feature 23998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465719097 of field osm_id of feature 23999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465719358 of field osm_id of feature 24000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465719732 of field osm_id of feature 24001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721411 of field osm_id of feature 24002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721412 of field osm_id of feature 24003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721413 of field osm_id of feature 24004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721414 of field osm_id of feature 24005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721422 of field osm_id of feature 24006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721423 of field osm_id of feature 24007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721424 of field osm_id of feature 24008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721425 of field osm_id of feature 24009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721428 of field osm_id of feature 24010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721429 of field osm_id of feature 24011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721503 of field osm_id of feature 24012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721505 of field osm_id of feature 24013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721506 of field osm_id of feature 24014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721528 of field osm_id of feature 24015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721529 of field osm_id of feature 24016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465721530 of field osm_id of feature 24017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465751199 of field osm_id of feature 24018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754192 of field osm_id of feature 24019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754576 of field osm_id of feature 24020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754577 of field osm_id of feature 24021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754579 of field osm_id of feature 24022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754580 of field osm_id of feature 24023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754582 of field osm_id of feature 24024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465754585 of field osm_id of feature 24025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758311 of field osm_id of feature 24026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758313 of field osm_id of feature 24027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758315 of field osm_id of feature 24028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758319 of field osm_id of feature 24029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758321 of field osm_id of feature 24030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758338 of field osm_id of feature 24031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758341 of field osm_id of feature 24032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758357 of field osm_id of feature 24033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465758359 of field osm_id of feature 24034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762622 of field osm_id of feature 24035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762638 of field osm_id of feature 24036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762639 of field osm_id of feature 24037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762720 of field osm_id of feature 24038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762721 of field osm_id of feature 24039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762722 of field osm_id of feature 24040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762724 of field osm_id of feature 24041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762725 of field osm_id of feature 24042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762726 of field osm_id of feature 24043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762727 of field osm_id of feature 24044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762728 of field osm_id of feature 24045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762731 of field osm_id of feature 24046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465762738 of field osm_id of feature 24047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763156 of field osm_id of feature 24048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763157 of field osm_id of feature 24049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763503 of field osm_id of feature 24050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763504 of field osm_id of feature 24051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763505 of field osm_id of feature 24052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763506 of field osm_id of feature 24053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763507 of field osm_id of feature 24054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763508 of field osm_id of feature 24055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763509 of field osm_id of feature 24056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763510 of field osm_id of feature 24057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763511 of field osm_id of feature 24058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763512 of field osm_id of feature 24059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763513 of field osm_id of feature 24060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763514 of field osm_id of feature 24061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763515 of field osm_id of feature 24062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763517 of field osm_id of feature 24063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763518 of field osm_id of feature 24064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763519 of field osm_id of feature 24065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465763520 of field osm_id of feature 24066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766647 of field osm_id of feature 24067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766649 of field osm_id of feature 24068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766651 of field osm_id of feature 24069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766652 of field osm_id of feature 24070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766653 of field osm_id of feature 24071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766654 of field osm_id of feature 24072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766655 of field osm_id of feature 24073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766656 of field osm_id of feature 24074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766657 of field osm_id of feature 24075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766659 of field osm_id of feature 24076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766661 of field osm_id of feature 24077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766663 of field osm_id of feature 24078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766664 of field osm_id of feature 24079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766665 of field osm_id of feature 24080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766666 of field osm_id of feature 24081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766667 of field osm_id of feature 24082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766668 of field osm_id of feature 24083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766669 of field osm_id of feature 24084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766670 of field osm_id of feature 24085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766671 of field osm_id of feature 24086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766672 of field osm_id of feature 24087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766673 of field osm_id of feature 24088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766674 of field osm_id of feature 24089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766676 of field osm_id of feature 24090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766677 of field osm_id of feature 24091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766678 of field osm_id of feature 24092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766679 of field osm_id of feature 24093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766680 of field osm_id of feature 24094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766681 of field osm_id of feature 24095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766682 of field osm_id of feature 24096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766683 of field osm_id of feature 24097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766684 of field osm_id of feature 24098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766685 of field osm_id of feature 24099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766686 of field osm_id of feature 24100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766687 of field osm_id of feature 24101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766688 of field osm_id of feature 24102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766691 of field osm_id of feature 24103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766693 of field osm_id of feature 24104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766694 of field osm_id of feature 24105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766698 of field osm_id of feature 24106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766703 of field osm_id of feature 24107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766710 of field osm_id of feature 24108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766715 of field osm_id of feature 24109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766716 of field osm_id of feature 24110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766718 of field osm_id of feature 24111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766720 of field osm_id of feature 24112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766728 of field osm_id of feature 24113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465766738 of field osm_id of feature 24114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770084 of field osm_id of feature 24115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770086 of field osm_id of feature 24116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770087 of field osm_id of feature 24117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770089 of field osm_id of feature 24118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770092 of field osm_id of feature 24119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770102 of field osm_id of feature 24120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770104 of field osm_id of feature 24121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770127 of field osm_id of feature 24122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770129 of field osm_id of feature 24123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770131 of field osm_id of feature 24124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770133 of field osm_id of feature 24125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770134 of field osm_id of feature 24126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770136 of field osm_id of feature 24127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770137 of field osm_id of feature 24128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770139 of field osm_id of feature 24129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770448 of field osm_id of feature 24130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770449 of field osm_id of feature 24131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770450 of field osm_id of feature 24132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770452 of field osm_id of feature 24133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770454 of field osm_id of feature 24134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770459 of field osm_id of feature 24135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770461 of field osm_id of feature 24136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770462 of field osm_id of feature 24137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770463 of field osm_id of feature 24138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770464 of field osm_id of feature 24139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770465 of field osm_id of feature 24140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770467 of field osm_id of feature 24141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770476 of field osm_id of feature 24142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770480 of field osm_id of feature 24143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770481 of field osm_id of feature 24144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770482 of field osm_id of feature 24145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465770703 of field osm_id of feature 24146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465772597 of field osm_id of feature 24147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465772751 of field osm_id of feature 24148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465772752 of field osm_id of feature 24149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773495 of field osm_id of feature 24150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773496 of field osm_id of feature 24151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773497 of field osm_id of feature 24152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773498 of field osm_id of feature 24153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773498 of field osm_id of feature 24154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773499 of field osm_id of feature 24155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773500 of field osm_id of feature 24156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773501 of field osm_id of feature 24157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773502 of field osm_id of feature 24158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773503 of field osm_id of feature 24159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773504 of field osm_id of feature 24160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773505 of field osm_id of feature 24161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773506 of field osm_id of feature 24162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773507 of field osm_id of feature 24163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773508 of field osm_id of feature 24164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773509 of field osm_id of feature 24165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773510 of field osm_id of feature 24166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773511 of field osm_id of feature 24167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773512 of field osm_id of feature 24168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773513 of field osm_id of feature 24169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773514 of field osm_id of feature 24170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773515 of field osm_id of feature 24171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773516 of field osm_id of feature 24172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773517 of field osm_id of feature 24173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773518 of field osm_id of feature 24174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773519 of field osm_id of feature 24175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773547 of field osm_id of feature 24176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773548 of field osm_id of feature 24177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773695 of field osm_id of feature 24178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773696 of field osm_id of feature 24179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773697 of field osm_id of feature 24180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773698 of field osm_id of feature 24181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773699 of field osm_id of feature 24182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773700 of field osm_id of feature 24183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773701 of field osm_id of feature 24184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773703 of field osm_id of feature 24185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773704 of field osm_id of feature 24186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773705 of field osm_id of feature 24187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773706 of field osm_id of feature 24188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773707 of field osm_id of feature 24189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773708 of field osm_id of feature 24190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773709 of field osm_id of feature 24191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773715 of field osm_id of feature 24192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773718 of field osm_id of feature 24193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773721 of field osm_id of feature 24194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773722 of field osm_id of feature 24195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773728 of field osm_id of feature 24196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773729 of field osm_id of feature 24197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773730 of field osm_id of feature 24198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773792 of field osm_id of feature 24199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773793 of field osm_id of feature 24200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773794 of field osm_id of feature 24201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773795 of field osm_id of feature 24202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773796 of field osm_id of feature 24203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773797 of field osm_id of feature 24204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773798 of field osm_id of feature 24205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773802 of field osm_id of feature 24206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465773803 of field osm_id of feature 24207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465774555 of field osm_id of feature 24208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465774556 of field osm_id of feature 24209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775152 of field osm_id of feature 24210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775153 of field osm_id of feature 24211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775180 of field osm_id of feature 24212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775181 of field osm_id of feature 24213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775182 of field osm_id of feature 24214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775183 of field osm_id of feature 24215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775184 of field osm_id of feature 24216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775185 of field osm_id of feature 24217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775730 of field osm_id of feature 24218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775731 of field osm_id of feature 24219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775732 of field osm_id of feature 24220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775733 of field osm_id of feature 24221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775901 of field osm_id of feature 24222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775902 of field osm_id of feature 24223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775903 of field osm_id of feature 24224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775904 of field osm_id of feature 24225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775905 of field osm_id of feature 24226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775906 of field osm_id of feature 24227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465775907 of field osm_id of feature 24228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776393 of field osm_id of feature 24229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776394 of field osm_id of feature 24230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776395 of field osm_id of feature 24231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776396 of field osm_id of feature 24232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776397 of field osm_id of feature 24233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776398 of field osm_id of feature 24234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776400 of field osm_id of feature 24235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776401 of field osm_id of feature 24236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776402 of field osm_id of feature 24237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776403 of field osm_id of feature 24238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776404 of field osm_id of feature 24239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776405 of field osm_id of feature 24240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776406 of field osm_id of feature 24241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776408 of field osm_id of feature 24242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776409 of field osm_id of feature 24243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776410 of field osm_id of feature 24244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776411 of field osm_id of feature 24245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776412 of field osm_id of feature 24246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776413 of field osm_id of feature 24247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465776414 of field osm_id of feature 24248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779430 of field osm_id of feature 24249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779431 of field osm_id of feature 24250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779436 of field osm_id of feature 24251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779791 of field osm_id of feature 24252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779796 of field osm_id of feature 24253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779797 of field osm_id of feature 24254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779798 of field osm_id of feature 24255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465779799 of field osm_id of feature 24256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465781734 of field osm_id of feature 24257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465781736 of field osm_id of feature 24258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465782636 of field osm_id of feature 24259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465782638 of field osm_id of feature 24260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465782673 of field osm_id of feature 24261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783843 of field osm_id of feature 24262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783867 of field osm_id of feature 24263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783869 of field osm_id of feature 24264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783871 of field osm_id of feature 24265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783874 of field osm_id of feature 24266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783885 of field osm_id of feature 24267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465783886 of field osm_id of feature 24268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785634 of field osm_id of feature 24269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785635 of field osm_id of feature 24270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785636 of field osm_id of feature 24271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785637 of field osm_id of feature 24272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785638 of field osm_id of feature 24273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785639 of field osm_id of feature 24274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785640 of field osm_id of feature 24275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785641 of field osm_id of feature 24276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785642 of field osm_id of feature 24277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785643 of field osm_id of feature 24278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785644 of field osm_id of feature 24279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465785645 of field osm_id of feature 24280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786219 of field osm_id of feature 24281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786220 of field osm_id of feature 24282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786221 of field osm_id of feature 24283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786222 of field osm_id of feature 24284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786265 of field osm_id of feature 24285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786266 of field osm_id of feature 24286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465786267 of field osm_id of feature 24287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787008 of field osm_id of feature 24288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787009 of field osm_id of feature 24289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787010 of field osm_id of feature 24290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787011 of field osm_id of feature 24291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787406 of field osm_id of feature 24292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787407 of field osm_id of feature 24293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787661 of field osm_id of feature 24294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787662 of field osm_id of feature 24295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787663 of field osm_id of feature 24296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787664 of field osm_id of feature 24297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787666 of field osm_id of feature 24298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787667 of field osm_id of feature 24299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787690 of field osm_id of feature 24300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465787691 of field osm_id of feature 24301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465788698 of field osm_id of feature 24302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465788699 of field osm_id of feature 24303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465788701 of field osm_id of feature 24304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465788702 of field osm_id of feature 24305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465788703 of field osm_id of feature 24306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792640 of field osm_id of feature 24307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792641 of field osm_id of feature 24308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792643 of field osm_id of feature 24309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792645 of field osm_id of feature 24310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792646 of field osm_id of feature 24311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792650 of field osm_id of feature 24312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792651 of field osm_id of feature 24313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792653 of field osm_id of feature 24314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465792654 of field osm_id of feature 24315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794549 of field osm_id of feature 24316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794550 of field osm_id of feature 24317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794559 of field osm_id of feature 24318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794561 of field osm_id of feature 24319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794567 of field osm_id of feature 24320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794568 of field osm_id of feature 24321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794569 of field osm_id of feature 24322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794570 of field osm_id of feature 24323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794571 of field osm_id of feature 24324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794572 of field osm_id of feature 24325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794573 of field osm_id of feature 24326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794574 of field osm_id of feature 24327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794576 of field osm_id of feature 24328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794577 of field osm_id of feature 24329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794578 of field osm_id of feature 24330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794579 of field osm_id of feature 24331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794580 of field osm_id of feature 24332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794581 of field osm_id of feature 24333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794589 of field osm_id of feature 24334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794790 of field osm_id of feature 24335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794791 of field osm_id of feature 24336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794792 of field osm_id of feature 24337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794793 of field osm_id of feature 24338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465794794 of field osm_id of feature 24339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796008 of field osm_id of feature 24340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796009 of field osm_id of feature 24341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796441 of field osm_id of feature 24342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796473 of field osm_id of feature 24343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796474 of field osm_id of feature 24344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465796475 of field osm_id of feature 24345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465797063 of field osm_id of feature 24346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465817187 of field osm_id of feature 24347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465818645 of field osm_id of feature 24348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465822876 of field osm_id of feature 24349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465828408 of field osm_id of feature 24350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465829042 of field osm_id of feature 24351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465829532 of field osm_id of feature 24352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465829533 of field osm_id of feature 24353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465831168 of field osm_id of feature 24354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465831169 of field osm_id of feature 24355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465831170 of field osm_id of feature 24356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465832384 of field osm_id of feature 24357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465833620 of field osm_id of feature 24358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465835546 of field osm_id of feature 24359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465836381 of field osm_id of feature 24360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465848207 of field osm_id of feature 24361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465982817 of field osm_id of feature 24362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465984283 of field osm_id of feature 24363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465991197 of field osm_id of feature 24364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465992636 of field osm_id of feature 24365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 465993761 of field osm_id of feature 24366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466001205 of field osm_id of feature 24367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466001206 of field osm_id of feature 24368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466001206 of field osm_id of feature 24369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466002952 of field osm_id of feature 24370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466003161 of field osm_id of feature 24371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466003931 of field osm_id of feature 24372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466004249 of field osm_id of feature 24373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466004250 of field osm_id of feature 24374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466013347 of field osm_id of feature 24375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466034317 of field osm_id of feature 24376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466034317 of field osm_id of feature 24377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466052381 of field osm_id of feature 24378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466221626 of field osm_id of feature 24379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466221627 of field osm_id of feature 24380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466221628 of field osm_id of feature 24381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466225843 of field osm_id of feature 24382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466260683 of field osm_id of feature 24383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466268213 of field osm_id of feature 24384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466268215 of field osm_id of feature 24385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466290516 of field osm_id of feature 24386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466303464 of field osm_id of feature 24387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466303465 of field osm_id of feature 24388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466307143 of field osm_id of feature 24389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466310435 of field osm_id of feature 24390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466310436 of field osm_id of feature 24391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466314247 of field osm_id of feature 24392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466314249 of field osm_id of feature 24393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466314250 of field osm_id of feature 24394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466314252 of field osm_id of feature 24395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466318023 of field osm_id of feature 24396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466319376 of field osm_id of feature 24397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421973 of field osm_id of feature 24398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421974 of field osm_id of feature 24399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421975 of field osm_id of feature 24400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421976 of field osm_id of feature 24401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421977 of field osm_id of feature 24402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421978 of field osm_id of feature 24403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466421978 of field osm_id of feature 24404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426403 of field osm_id of feature 24405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426404 of field osm_id of feature 24406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426405 of field osm_id of feature 24407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426406 of field osm_id of feature 24408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426407 of field osm_id of feature 24409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426408 of field osm_id of feature 24410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426409 of field osm_id of feature 24411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426410 of field osm_id of feature 24412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426411 of field osm_id of feature 24413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426412 of field osm_id of feature 24414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426413 of field osm_id of feature 24415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426413 of field osm_id of feature 24416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426414 of field osm_id of feature 24417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426415 of field osm_id of feature 24418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426416 of field osm_id of feature 24419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426417 of field osm_id of feature 24420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426418 of field osm_id of feature 24421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426419 of field osm_id of feature 24422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426420 of field osm_id of feature 24423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426421 of field osm_id of feature 24424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466426422 of field osm_id of feature 24425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427978 of field osm_id of feature 24426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427980 of field osm_id of feature 24427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427982 of field osm_id of feature 24428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427983 of field osm_id of feature 24429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427985 of field osm_id of feature 24430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466427986 of field osm_id of feature 24431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466428265 of field osm_id of feature 24432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466428266 of field osm_id of feature 24433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466429756 of field osm_id of feature 24434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466429758 of field osm_id of feature 24435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435982 of field osm_id of feature 24436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435985 of field osm_id of feature 24437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435988 of field osm_id of feature 24438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435990 of field osm_id of feature 24439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435991 of field osm_id of feature 24440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435992 of field osm_id of feature 24441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466435994 of field osm_id of feature 24442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437717 of field osm_id of feature 24443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437718 of field osm_id of feature 24444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437719 of field osm_id of feature 24445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437720 of field osm_id of feature 24446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437721 of field osm_id of feature 24447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466437722 of field osm_id of feature 24448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490637 of field osm_id of feature 24449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490644 of field osm_id of feature 24450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490653 of field osm_id of feature 24451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490666 of field osm_id of feature 24452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490667 of field osm_id of feature 24453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466490668 of field osm_id of feature 24454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466504780 of field osm_id of feature 24455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466509904 of field osm_id of feature 24456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466509905 of field osm_id of feature 24457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466515473 of field osm_id of feature 24458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466515476 of field osm_id of feature 24459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466515478 of field osm_id of feature 24460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517578 of field osm_id of feature 24461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517579 of field osm_id of feature 24462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517580 of field osm_id of feature 24463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517581 of field osm_id of feature 24464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517582 of field osm_id of feature 24465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466517583 of field osm_id of feature 24466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466520693 of field osm_id of feature 24467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523807 of field osm_id of feature 24468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523808 of field osm_id of feature 24469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523809 of field osm_id of feature 24470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523810 of field osm_id of feature 24471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523811 of field osm_id of feature 24472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523813 of field osm_id of feature 24473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466523814 of field osm_id of feature 24474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466528961 of field osm_id of feature 24475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466547091 of field osm_id of feature 24476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466551638 of field osm_id of feature 24477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466551639 of field osm_id of feature 24478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466551640 of field osm_id of feature 24479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466551641 of field osm_id of feature 24480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466560671 of field osm_id of feature 24481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466560672 of field osm_id of feature 24482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466561701 of field osm_id of feature 24483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466567677 of field osm_id of feature 24484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466581858 of field osm_id of feature 24485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466591542 of field osm_id of feature 24486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466591543 of field osm_id of feature 24487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466598105 of field osm_id of feature 24488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466608085 of field osm_id of feature 24489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466608088 of field osm_id of feature 24490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466626369 of field osm_id of feature 24491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466626370 of field osm_id of feature 24492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466630201 of field osm_id of feature 24493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466630202 of field osm_id of feature 24494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466692545 of field osm_id of feature 24495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466692546 of field osm_id of feature 24496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466692547 of field osm_id of feature 24497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466693042 of field osm_id of feature 24498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466699484 of field osm_id of feature 24499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466702892 of field osm_id of feature 24500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466702895 of field osm_id of feature 24501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466702897 of field osm_id of feature 24502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466702900 of field osm_id of feature 24503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466702903 of field osm_id of feature 24504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466720537 of field osm_id of feature 24505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466733417 of field osm_id of feature 24506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466733417 of field osm_id of feature 24507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466733672 of field osm_id of feature 24508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466733672 of field osm_id of feature 24509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466736535 of field osm_id of feature 24510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466736536 of field osm_id of feature 24511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466736537 of field osm_id of feature 24512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466736538 of field osm_id of feature 24513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466737542 of field osm_id of feature 24514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466739184 of field osm_id of feature 24515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466796074 of field osm_id of feature 24516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466797193 of field osm_id of feature 24517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466811728 of field osm_id of feature 24518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466813086 of field osm_id of feature 24519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466813087 of field osm_id of feature 24520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466817157 of field osm_id of feature 24521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466817157 of field osm_id of feature 24522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466821235 of field osm_id of feature 24523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466821236 of field osm_id of feature 24524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466831253 of field osm_id of feature 24525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466833601 of field osm_id of feature 24526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466838060 of field osm_id of feature 24527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466841512 of field osm_id of feature 24528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466841513 of field osm_id of feature 24529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466841514 of field osm_id of feature 24530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466841515 of field osm_id of feature 24531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466851397 of field osm_id of feature 24532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466851398 of field osm_id of feature 24533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466851399 of field osm_id of feature 24534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466853403 of field osm_id of feature 24535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466857906 of field osm_id of feature 24536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466862739 of field osm_id of feature 24537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466875041 of field osm_id of feature 24538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466875042 of field osm_id of feature 24539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466935883 of field osm_id of feature 24540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 466935883 of field osm_id of feature 24541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467066221 of field osm_id of feature 24542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467066222 of field osm_id of feature 24543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467070266 of field osm_id of feature 24544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467074469 of field osm_id of feature 24545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467077237 of field osm_id of feature 24546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467077238 of field osm_id of feature 24547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467077239 of field osm_id of feature 24548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467079266 of field osm_id of feature 24549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467083938 of field osm_id of feature 24550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467083940 of field osm_id of feature 24551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467088488 of field osm_id of feature 24552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467093549 of field osm_id of feature 24553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467093552 of field osm_id of feature 24554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467093555 of field osm_id of feature 24555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467100042 of field osm_id of feature 24556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467351548 of field osm_id of feature 24557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467351549 of field osm_id of feature 24558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467351550 of field osm_id of feature 24559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467351554 of field osm_id of feature 24560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467351555 of field osm_id of feature 24561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414539 of field osm_id of feature 24562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414540 of field osm_id of feature 24563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414541 of field osm_id of feature 24564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414542 of field osm_id of feature 24565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414543 of field osm_id of feature 24566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414546 of field osm_id of feature 24567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467414547 of field osm_id of feature 24568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467420243 of field osm_id of feature 24569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467420244 of field osm_id of feature 24570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467420248 of field osm_id of feature 24571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689353 of field osm_id of feature 24572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689356 of field osm_id of feature 24573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689358 of field osm_id of feature 24574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689363 of field osm_id of feature 24575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689368 of field osm_id of feature 24576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467689371 of field osm_id of feature 24577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467705312 of field osm_id of feature 24578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467705316 of field osm_id of feature 24579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467710954 of field osm_id of feature 24580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467710958 of field osm_id of feature 24581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467710959 of field osm_id of feature 24582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467713371 of field osm_id of feature 24583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467713372 of field osm_id of feature 24584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467725330 of field osm_id of feature 24585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467725332 of field osm_id of feature 24586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467725333 of field osm_id of feature 24587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731241 of field osm_id of feature 24588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731245 of field osm_id of feature 24589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731246 of field osm_id of feature 24590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731255 of field osm_id of feature 24591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731256 of field osm_id of feature 24592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467731257 of field osm_id of feature 24593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467732181 of field osm_id of feature 24594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467732182 of field osm_id of feature 24595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467732184 of field osm_id of feature 24596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467735739 of field osm_id of feature 24597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467735740 of field osm_id of feature 24598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467745673 of field osm_id of feature 24599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467745674 of field osm_id of feature 24600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467745676 of field osm_id of feature 24601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467745682 of field osm_id of feature 24602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880092 of field osm_id of feature 24603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880093 of field osm_id of feature 24604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880094 of field osm_id of feature 24605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880095 of field osm_id of feature 24606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880096 of field osm_id of feature 24607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880097 of field osm_id of feature 24608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467880097 of field osm_id of feature 24609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467891205 of field osm_id of feature 24610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467891209 of field osm_id of feature 24611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467891210 of field osm_id of feature 24612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467891211 of field osm_id of feature 24613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899811 of field osm_id of feature 24614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899812 of field osm_id of feature 24615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899813 of field osm_id of feature 24616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899814 of field osm_id of feature 24617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899815 of field osm_id of feature 24618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899816 of field osm_id of feature 24619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 467899818 of field osm_id of feature 24620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468226853 of field osm_id of feature 24621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468226854 of field osm_id of feature 24622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468226855 of field osm_id of feature 24623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468226856 of field osm_id of feature 24624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468226858 of field osm_id of feature 24625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468586422 of field osm_id of feature 24626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468586423 of field osm_id of feature 24627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685546 of field osm_id of feature 24628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685547 of field osm_id of feature 24629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685548 of field osm_id of feature 24630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685549 of field osm_id of feature 24631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685550 of field osm_id of feature 24632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468685551 of field osm_id of feature 24633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 468925211 of field osm_id of feature 24634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047786 of field osm_id of feature 24635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047787 of field osm_id of feature 24636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047788 of field osm_id of feature 24637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047789 of field osm_id of feature 24638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047791 of field osm_id of feature 24639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047793 of field osm_id of feature 24640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047794 of field osm_id of feature 24641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047797 of field osm_id of feature 24642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047799 of field osm_id of feature 24643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047801 of field osm_id of feature 24644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047804 of field osm_id of feature 24645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047807 of field osm_id of feature 24646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047809 of field osm_id of feature 24647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047811 of field osm_id of feature 24648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469047815 of field osm_id of feature 24649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469316809 of field osm_id of feature 24650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469328262 of field osm_id of feature 24651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469333093 of field osm_id of feature 24652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469341274 of field osm_id of feature 24653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469341275 of field osm_id of feature 24654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469341277 of field osm_id of feature 24655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469498325 of field osm_id of feature 24656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469498326 of field osm_id of feature 24657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469517176 of field osm_id of feature 24658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469517178 of field osm_id of feature 24659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469553175 of field osm_id of feature 24660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469553176 of field osm_id of feature 24661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469553177 of field osm_id of feature 24662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469553178 of field osm_id of feature 24663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469560068 of field osm_id of feature 24664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469579670 of field osm_id of feature 24665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469579671 of field osm_id of feature 24666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469579672 of field osm_id of feature 24667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469589971 of field osm_id of feature 24668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469589972 of field osm_id of feature 24669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469590196 of field osm_id of feature 24670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469594850 of field osm_id of feature 24671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469594851 of field osm_id of feature 24672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469594852 of field osm_id of feature 24673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618812 of field osm_id of feature 24674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618813 of field osm_id of feature 24675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618814 of field osm_id of feature 24676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618814 of field osm_id of feature 24677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618815 of field osm_id of feature 24678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469618817 of field osm_id of feature 24679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469620388 of field osm_id of feature 24680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692815 of field osm_id of feature 24681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692816 of field osm_id of feature 24682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692818 of field osm_id of feature 24683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692820 of field osm_id of feature 24684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692821 of field osm_id of feature 24685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469692822 of field osm_id of feature 24686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469714502 of field osm_id of feature 24687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469714503 of field osm_id of feature 24688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469714506 of field osm_id of feature 24689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469714507 of field osm_id of feature 24690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469714509 of field osm_id of feature 24691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469790797 of field osm_id of feature 24692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469790798 of field osm_id of feature 24693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 469790799 of field osm_id of feature 24694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470118588 of field osm_id of feature 24695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253962 of field osm_id of feature 24696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253963 of field osm_id of feature 24697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253964 of field osm_id of feature 24698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253965 of field osm_id of feature 24699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253965 of field osm_id of feature 24700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253966 of field osm_id of feature 24701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253966 of field osm_id of feature 24702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253966 of field osm_id of feature 24703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470253967 of field osm_id of feature 24704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470274157 of field osm_id of feature 24705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470288292 of field osm_id of feature 24706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470288296 of field osm_id of feature 24707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470288297 of field osm_id of feature 24708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470295986 of field osm_id of feature 24709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470298689 of field osm_id of feature 24710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470356750 of field osm_id of feature 24711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470363491 of field osm_id of feature 24712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470363492 of field osm_id of feature 24713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470365410 of field osm_id of feature 24714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470372158 of field osm_id of feature 24715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470376312 of field osm_id of feature 24716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470376313 of field osm_id of feature 24717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386835 of field osm_id of feature 24718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386837 of field osm_id of feature 24719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386838 of field osm_id of feature 24720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386839 of field osm_id of feature 24721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386840 of field osm_id of feature 24722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386841 of field osm_id of feature 24723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470386842 of field osm_id of feature 24724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470396461 of field osm_id of feature 24725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470396463 of field osm_id of feature 24726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470396465 of field osm_id of feature 24727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470396468 of field osm_id of feature 24728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470404953 of field osm_id of feature 24729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470404955 of field osm_id of feature 24730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470404959 of field osm_id of feature 24731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470407980 of field osm_id of feature 24732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470470718 of field osm_id of feature 24733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470470723 of field osm_id of feature 24734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470472091 of field osm_id of feature 24735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470476508 of field osm_id of feature 24736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470476509 of field osm_id of feature 24737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470476510 of field osm_id of feature 24738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470476511 of field osm_id of feature 24739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470476512 of field osm_id of feature 24740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470477265 of field osm_id of feature 24741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470477266 of field osm_id of feature 24742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470477267 of field osm_id of feature 24743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470477268 of field osm_id of feature 24744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479199 of field osm_id of feature 24745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479200 of field osm_id of feature 24746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479201 of field osm_id of feature 24747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479202 of field osm_id of feature 24748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479203 of field osm_id of feature 24749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479204 of field osm_id of feature 24750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479205 of field osm_id of feature 24751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479206 of field osm_id of feature 24752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470479207 of field osm_id of feature 24753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470500116 of field osm_id of feature 24754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470533681 of field osm_id of feature 24755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470533691 of field osm_id of feature 24756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470533692 of field osm_id of feature 24757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470533696 of field osm_id of feature 24758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470533696 of field osm_id of feature 24759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470674156 of field osm_id of feature 24760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470674158 of field osm_id of feature 24761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470674161 of field osm_id of feature 24762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470674162 of field osm_id of feature 24763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470674165 of field osm_id of feature 24764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470682089 of field osm_id of feature 24765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470682091 of field osm_id of feature 24766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470682093 of field osm_id of feature 24767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470697576 of field osm_id of feature 24768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470697578 of field osm_id of feature 24769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470697581 of field osm_id of feature 24770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470697583 of field osm_id of feature 24771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470700544 of field osm_id of feature 24772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470700546 of field osm_id of feature 24773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470705747 of field osm_id of feature 24774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470705749 of field osm_id of feature 24775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470787509 of field osm_id of feature 24776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470787513 of field osm_id of feature 24777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470787518 of field osm_id of feature 24778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795354 of field osm_id of feature 24779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795356 of field osm_id of feature 24780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795359 of field osm_id of feature 24781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795362 of field osm_id of feature 24782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795365 of field osm_id of feature 24783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795367 of field osm_id of feature 24784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470795371 of field osm_id of feature 24785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470804414 of field osm_id of feature 24786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470804417 of field osm_id of feature 24787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470804419 of field osm_id of feature 24788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470804422 of field osm_id of feature 24789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470804425 of field osm_id of feature 24790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470817988 of field osm_id of feature 24791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470847908 of field osm_id of feature 24792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470847909 of field osm_id of feature 24793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470847910 of field osm_id of feature 24794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470847911 of field osm_id of feature 24795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470847912 of field osm_id of feature 24796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470883769 of field osm_id of feature 24797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470883770 of field osm_id of feature 24798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470883771 of field osm_id of feature 24799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470883772 of field osm_id of feature 24800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890600 of field osm_id of feature 24801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890601 of field osm_id of feature 24802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890602 of field osm_id of feature 24803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890604 of field osm_id of feature 24804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890605 of field osm_id of feature 24805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890606 of field osm_id of feature 24806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890607 of field osm_id of feature 24807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470890608 of field osm_id of feature 24808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897073 of field osm_id of feature 24809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897074 of field osm_id of feature 24810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897075 of field osm_id of feature 24811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897076 of field osm_id of feature 24812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897457 of field osm_id of feature 24813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470897459 of field osm_id of feature 24814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898563 of field osm_id of feature 24815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898564 of field osm_id of feature 24816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898565 of field osm_id of feature 24817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898566 of field osm_id of feature 24818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898567 of field osm_id of feature 24819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470898568 of field osm_id of feature 24820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470904967 of field osm_id of feature 24821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470904969 of field osm_id of feature 24822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470907464 of field osm_id of feature 24823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470907467 of field osm_id of feature 24824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917017 of field osm_id of feature 24825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917018 of field osm_id of feature 24826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917019 of field osm_id of feature 24827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917020 of field osm_id of feature 24828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917021 of field osm_id of feature 24829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917022 of field osm_id of feature 24830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917023 of field osm_id of feature 24831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917873 of field osm_id of feature 24832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470917874 of field osm_id of feature 24833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919053 of field osm_id of feature 24834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919054 of field osm_id of feature 24835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919055 of field osm_id of feature 24836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919056 of field osm_id of feature 24837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919057 of field osm_id of feature 24838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470919058 of field osm_id of feature 24839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470920158 of field osm_id of feature 24840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470922335 of field osm_id of feature 24841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470922336 of field osm_id of feature 24842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 470922337 of field osm_id of feature 24843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471136830 of field osm_id of feature 24844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471136831 of field osm_id of feature 24845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471136832 of field osm_id of feature 24846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471136833 of field osm_id of feature 24847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471151476 of field osm_id of feature 24848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471151479 of field osm_id of feature 24849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471159480 of field osm_id of feature 24850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471159483 of field osm_id of feature 24851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471159487 of field osm_id of feature 24852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471161673 of field osm_id of feature 24853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471161674 of field osm_id of feature 24854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471161675 of field osm_id of feature 24855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471162361 of field osm_id of feature 24856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471185095 of field osm_id of feature 24857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471185103 of field osm_id of feature 24858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471185108 of field osm_id of feature 24859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471187526 of field osm_id of feature 24860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471187527 of field osm_id of feature 24861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471188312 of field osm_id of feature 24862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471188313 of field osm_id of feature 24863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471190114 of field osm_id of feature 24864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471190118 of field osm_id of feature 24865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471190121 of field osm_id of feature 24866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471229372 of field osm_id of feature 24867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471229377 of field osm_id of feature 24868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471229380 of field osm_id of feature 24869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471229382 of field osm_id of feature 24870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471229385 of field osm_id of feature 24871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471237318 of field osm_id of feature 24872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471237320 of field osm_id of feature 24873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471239053 of field osm_id of feature 24874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257143 of field osm_id of feature 24875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257144 of field osm_id of feature 24876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257146 of field osm_id of feature 24877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257147 of field osm_id of feature 24878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257148 of field osm_id of feature 24879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257149 of field osm_id of feature 24880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257152 of field osm_id of feature 24881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257153 of field osm_id of feature 24882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257155 of field osm_id of feature 24883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471257157 of field osm_id of feature 24884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272304 of field osm_id of feature 24885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272305 of field osm_id of feature 24886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272306 of field osm_id of feature 24887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272307 of field osm_id of feature 24888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272308 of field osm_id of feature 24889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272308 of field osm_id of feature 24890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272309 of field osm_id of feature 24891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272310 of field osm_id of feature 24892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272311 of field osm_id of feature 24893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272312 of field osm_id of feature 24894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471272313 of field osm_id of feature 24895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281439 of field osm_id of feature 24896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281440 of field osm_id of feature 24897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281441 of field osm_id of feature 24898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281442 of field osm_id of feature 24899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281443 of field osm_id of feature 24900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281444 of field osm_id of feature 24901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281445 of field osm_id of feature 24902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471281447 of field osm_id of feature 24903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471297010 of field osm_id of feature 24904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471300170 of field osm_id of feature 24905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471300171 of field osm_id of feature 24906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471300172 of field osm_id of feature 24907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471300175 of field osm_id of feature 24908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471308505 of field osm_id of feature 24909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471308506 of field osm_id of feature 24910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471308508 of field osm_id of feature 24911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471331536 of field osm_id of feature 24912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471351943 of field osm_id of feature 24913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353375 of field osm_id of feature 24914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353376 of field osm_id of feature 24915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353377 of field osm_id of feature 24916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353378 of field osm_id of feature 24917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353379 of field osm_id of feature 24918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353380 of field osm_id of feature 24919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471353381 of field osm_id of feature 24920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471356403 of field osm_id of feature 24921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471356405 of field osm_id of feature 24922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471356406 of field osm_id of feature 24923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471356706 of field osm_id of feature 24924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471356707 of field osm_id of feature 24925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471357858 of field osm_id of feature 24926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471357859 of field osm_id of feature 24927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471509725 of field osm_id of feature 24928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471509726 of field osm_id of feature 24929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471510484 of field osm_id of feature 24930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514771 of field osm_id of feature 24931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514772 of field osm_id of feature 24932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514773 of field osm_id of feature 24933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514774 of field osm_id of feature 24934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514775 of field osm_id of feature 24935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514776 of field osm_id of feature 24936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514777 of field osm_id of feature 24937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514778 of field osm_id of feature 24938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514779 of field osm_id of feature 24939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514780 of field osm_id of feature 24940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471514781 of field osm_id of feature 24941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471518270 of field osm_id of feature 24942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471518271 of field osm_id of feature 24943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471524488 of field osm_id of feature 24944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471524490 of field osm_id of feature 24945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471524492 of field osm_id of feature 24946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471524494 of field osm_id of feature 24947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471527922 of field osm_id of feature 24948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471527923 of field osm_id of feature 24949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471535023 of field osm_id of feature 24950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471535025 of field osm_id of feature 24951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540587 of field osm_id of feature 24952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540592 of field osm_id of feature 24953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540596 of field osm_id of feature 24954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540601 of field osm_id of feature 24955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540661 of field osm_id of feature 24956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471540673 of field osm_id of feature 24957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471547479 of field osm_id of feature 24958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471547482 of field osm_id of feature 24959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471636618 of field osm_id of feature 24960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471636622 of field osm_id of feature 24961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641531 of field osm_id of feature 24962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641535 of field osm_id of feature 24963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641537 of field osm_id of feature 24964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641540 of field osm_id of feature 24965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641543 of field osm_id of feature 24966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471641546 of field osm_id of feature 24967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471644805 of field osm_id of feature 24968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471644806 of field osm_id of feature 24969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471644807 of field osm_id of feature 24970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471646289 of field osm_id of feature 24971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471646290 of field osm_id of feature 24972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471646291 of field osm_id of feature 24973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471647684 of field osm_id of feature 24974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471647686 of field osm_id of feature 24975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471650700 of field osm_id of feature 24976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471650701 of field osm_id of feature 24977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471650702 of field osm_id of feature 24978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471652054 of field osm_id of feature 24979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471695644 of field osm_id of feature 24980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471696624 of field osm_id of feature 24981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471696625 of field osm_id of feature 24982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471696626 of field osm_id of feature 24983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471697267 of field osm_id of feature 24984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698292 of field osm_id of feature 24985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698293 of field osm_id of feature 24986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698294 of field osm_id of feature 24987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698295 of field osm_id of feature 24988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698296 of field osm_id of feature 24989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698572 of field osm_id of feature 24990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698573 of field osm_id of feature 24991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698574 of field osm_id of feature 24992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698575 of field osm_id of feature 24993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471698576 of field osm_id of feature 24994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700893 of field osm_id of feature 24995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700894 of field osm_id of feature 24996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700895 of field osm_id of feature 24997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700896 of field osm_id of feature 24998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700898 of field osm_id of feature 24999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471700899 of field osm_id of feature 25000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471703495 of field osm_id of feature 25001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471889859 of field osm_id of feature 25002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471889860 of field osm_id of feature 25003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471889861 of field osm_id of feature 25004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471889862 of field osm_id of feature 25005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471891931 of field osm_id of feature 25006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471892301 of field osm_id of feature 25007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471892302 of field osm_id of feature 25008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471892303 of field osm_id of feature 25009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471895254 of field osm_id of feature 25010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964635 of field osm_id of feature 25011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964636 of field osm_id of feature 25012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964640 of field osm_id of feature 25013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964641 of field osm_id of feature 25014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964642 of field osm_id of feature 25015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964643 of field osm_id of feature 25016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964644 of field osm_id of feature 25017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964645 of field osm_id of feature 25018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964646 of field osm_id of feature 25019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964647 of field osm_id of feature 25020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964648 of field osm_id of feature 25021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964649 of field osm_id of feature 25022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471964650 of field osm_id of feature 25023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471965397 of field osm_id of feature 25024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471965398 of field osm_id of feature 25025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471965399 of field osm_id of feature 25026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471965400 of field osm_id of feature 25027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994627 of field osm_id of feature 25028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994628 of field osm_id of feature 25029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994629 of field osm_id of feature 25030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994630 of field osm_id of feature 25031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994631 of field osm_id of feature 25032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994632 of field osm_id of feature 25033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471994632 of field osm_id of feature 25034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471995975 of field osm_id of feature 25035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471995976 of field osm_id of feature 25036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471995977 of field osm_id of feature 25037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471998741 of field osm_id of feature 25038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471998742 of field osm_id of feature 25039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471999456 of field osm_id of feature 25040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 471999457 of field osm_id of feature 25041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012066 of field osm_id of feature 25042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012069 of field osm_id of feature 25043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012072 of field osm_id of feature 25044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012074 of field osm_id of feature 25045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012077 of field osm_id of feature 25046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012081 of field osm_id of feature 25047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012081 of field osm_id of feature 25048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012084 of field osm_id of feature 25049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472012088 of field osm_id of feature 25050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472024684 of field osm_id of feature 25051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472024687 of field osm_id of feature 25052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472032729 of field osm_id of feature 25053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472032730 of field osm_id of feature 25054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472033390 of field osm_id of feature 25055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472033392 of field osm_id of feature 25056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472033396 of field osm_id of feature 25057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472098011 of field osm_id of feature 25058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472098015 of field osm_id of feature 25059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099085 of field osm_id of feature 25060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099086 of field osm_id of feature 25061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099087 of field osm_id of feature 25062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099088 of field osm_id of feature 25063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099089 of field osm_id of feature 25064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099090 of field osm_id of feature 25065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099091 of field osm_id of feature 25066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472099092 of field osm_id of feature 25067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472101125 of field osm_id of feature 25068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472103831 of field osm_id of feature 25069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472103834 of field osm_id of feature 25070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105371 of field osm_id of feature 25071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105372 of field osm_id of feature 25072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105373 of field osm_id of feature 25073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105374 of field osm_id of feature 25074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105376 of field osm_id of feature 25075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472105377 of field osm_id of feature 25076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472106152 of field osm_id of feature 25077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472106153 of field osm_id of feature 25078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472106154 of field osm_id of feature 25079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472106155 of field osm_id of feature 25080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472112645 of field osm_id of feature 25081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472112648 of field osm_id of feature 25082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472112651 of field osm_id of feature 25083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116141 of field osm_id of feature 25084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116142 of field osm_id of feature 25085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116143 of field osm_id of feature 25086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116144 of field osm_id of feature 25087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116145 of field osm_id of feature 25088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116146 of field osm_id of feature 25089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472116148 of field osm_id of feature 25090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472566494 of field osm_id of feature 25091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472569677 of field osm_id of feature 25092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647968 of field osm_id of feature 25093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647970 of field osm_id of feature 25094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647971 of field osm_id of feature 25095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647972 of field osm_id of feature 25096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647973 of field osm_id of feature 25097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647974 of field osm_id of feature 25098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647975 of field osm_id of feature 25099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472647976 of field osm_id of feature 25100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648770 of field osm_id of feature 25101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648771 of field osm_id of feature 25102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648772 of field osm_id of feature 25103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648773 of field osm_id of feature 25104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648774 of field osm_id of feature 25105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472648775 of field osm_id of feature 25106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472650080 of field osm_id of feature 25107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472650081 of field osm_id of feature 25108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472650082 of field osm_id of feature 25109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472650681 of field osm_id of feature 25110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472651666 of field osm_id of feature 25111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472651667 of field osm_id of feature 25112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472651668 of field osm_id of feature 25113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472651669 of field osm_id of feature 25114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472651670 of field osm_id of feature 25115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472655196 of field osm_id of feature 25116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472655197 of field osm_id of feature 25117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472655198 of field osm_id of feature 25118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472655199 of field osm_id of feature 25119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472655200 of field osm_id of feature 25120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472658686 of field osm_id of feature 25121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472664957 of field osm_id of feature 25122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472664959 of field osm_id of feature 25123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673128 of field osm_id of feature 25124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673131 of field osm_id of feature 25125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673136 of field osm_id of feature 25126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673140 of field osm_id of feature 25127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673146 of field osm_id of feature 25128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472673151 of field osm_id of feature 25129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472676818 of field osm_id of feature 25130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472676819 of field osm_id of feature 25131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472676821 of field osm_id of feature 25132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472677540 of field osm_id of feature 25133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472677541 of field osm_id of feature 25134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472677542 of field osm_id of feature 25135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472677543 of field osm_id of feature 25136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679671 of field osm_id of feature 25137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679672 of field osm_id of feature 25138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679673 of field osm_id of feature 25139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679674 of field osm_id of feature 25140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679675 of field osm_id of feature 25141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679676 of field osm_id of feature 25142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679677 of field osm_id of feature 25143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472679678 of field osm_id of feature 25144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472760167 of field osm_id of feature 25145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472760169 of field osm_id of feature 25146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472760171 of field osm_id of feature 25147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472760173 of field osm_id of feature 25148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472791897 of field osm_id of feature 25149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472791899 of field osm_id of feature 25150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472791901 of field osm_id of feature 25151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472791903 of field osm_id of feature 25152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472795417 of field osm_id of feature 25153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472795419 of field osm_id of feature 25154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472795420 of field osm_id of feature 25155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472797897 of field osm_id of feature 25156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472797898 of field osm_id of feature 25157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472797900 of field osm_id of feature 25158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472797902 of field osm_id of feature 25159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472801558 of field osm_id of feature 25160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472801562 of field osm_id of feature 25161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472801566 of field osm_id of feature 25162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472805500 of field osm_id of feature 25163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472805501 of field osm_id of feature 25164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472808325 of field osm_id of feature 25165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472808331 of field osm_id of feature 25166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472808333 of field osm_id of feature 25167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472808338 of field osm_id of feature 25168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472808341 of field osm_id of feature 25169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813884 of field osm_id of feature 25170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813885 of field osm_id of feature 25171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813886 of field osm_id of feature 25172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813887 of field osm_id of feature 25173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813888 of field osm_id of feature 25174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813889 of field osm_id of feature 25175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813890 of field osm_id of feature 25176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813891 of field osm_id of feature 25177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813892 of field osm_id of feature 25178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813893 of field osm_id of feature 25179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813894 of field osm_id of feature 25180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813895 of field osm_id of feature 25181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472813896 of field osm_id of feature 25182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816173 of field osm_id of feature 25183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816173 of field osm_id of feature 25184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816174 of field osm_id of feature 25185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816175 of field osm_id of feature 25186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816176 of field osm_id of feature 25187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816177 of field osm_id of feature 25188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816178 of field osm_id of feature 25189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816179 of field osm_id of feature 25190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816180 of field osm_id of feature 25191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816181 of field osm_id of feature 25192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816182 of field osm_id of feature 25193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816184 of field osm_id of feature 25194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472816185 of field osm_id of feature 25195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472817944 of field osm_id of feature 25196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472817945 of field osm_id of feature 25197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472817946 of field osm_id of feature 25198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472817947 of field osm_id of feature 25199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472817948 of field osm_id of feature 25200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818518 of field osm_id of feature 25201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818519 of field osm_id of feature 25202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818520 of field osm_id of feature 25203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818523 of field osm_id of feature 25204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818524 of field osm_id of feature 25205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818525 of field osm_id of feature 25206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818526 of field osm_id of feature 25207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818527 of field osm_id of feature 25208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818528 of field osm_id of feature 25209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472818531 of field osm_id of feature 25210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823080 of field osm_id of feature 25211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823081 of field osm_id of feature 25212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823082 of field osm_id of feature 25213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823083 of field osm_id of feature 25214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823084 of field osm_id of feature 25215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823085 of field osm_id of feature 25216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823086 of field osm_id of feature 25217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823087 of field osm_id of feature 25218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823088 of field osm_id of feature 25219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823088 of field osm_id of feature 25220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472823089 of field osm_id of feature 25221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472833728 of field osm_id of feature 25222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472833729 of field osm_id of feature 25223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472842246 of field osm_id of feature 25224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472842249 of field osm_id of feature 25225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472842250 of field osm_id of feature 25226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472842252 of field osm_id of feature 25227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472847809 of field osm_id of feature 25228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472847810 of field osm_id of feature 25229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472847811 of field osm_id of feature 25230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472847812 of field osm_id of feature 25231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472847813 of field osm_id of feature 25232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851096 of field osm_id of feature 25233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851097 of field osm_id of feature 25234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851098 of field osm_id of feature 25235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851099 of field osm_id of feature 25236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851100 of field osm_id of feature 25237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472851101 of field osm_id of feature 25238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472852046 of field osm_id of feature 25239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472852047 of field osm_id of feature 25240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853510 of field osm_id of feature 25241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853511 of field osm_id of feature 25242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853512 of field osm_id of feature 25243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853513 of field osm_id of feature 25244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853514 of field osm_id of feature 25245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853515 of field osm_id of feature 25246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853516 of field osm_id of feature 25247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853517 of field osm_id of feature 25248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853518 of field osm_id of feature 25249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853519 of field osm_id of feature 25250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853520 of field osm_id of feature 25251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853521 of field osm_id of feature 25252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853522 of field osm_id of feature 25253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853523 of field osm_id of feature 25254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853524 of field osm_id of feature 25255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472853525 of field osm_id of feature 25256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 472854038 of field osm_id of feature 25257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173011 of field osm_id of feature 25258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173012 of field osm_id of feature 25259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173013 of field osm_id of feature 25260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173014 of field osm_id of feature 25261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173015 of field osm_id of feature 25262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173016 of field osm_id of feature 25263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173017 of field osm_id of feature 25264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173018 of field osm_id of feature 25265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473173019 of field osm_id of feature 25266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473189332 of field osm_id of feature 25267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473189333 of field osm_id of feature 25268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473189334 of field osm_id of feature 25269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473189335 of field osm_id of feature 25270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190046 of field osm_id of feature 25271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190047 of field osm_id of feature 25272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190048 of field osm_id of feature 25273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190049 of field osm_id of feature 25274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190049 of field osm_id of feature 25275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190050 of field osm_id of feature 25276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190051 of field osm_id of feature 25277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190052 of field osm_id of feature 25278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190052 of field osm_id of feature 25279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190053 of field osm_id of feature 25280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473190053 of field osm_id of feature 25281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191306 of field osm_id of feature 25282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191307 of field osm_id of feature 25283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191308 of field osm_id of feature 25284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191309 of field osm_id of feature 25285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191599 of field osm_id of feature 25286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191600 of field osm_id of feature 25287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473191601 of field osm_id of feature 25288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473193764 of field osm_id of feature 25289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473193765 of field osm_id of feature 25290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473193766 of field osm_id of feature 25291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473193767 of field osm_id of feature 25292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473242886 of field osm_id of feature 25293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473242889 of field osm_id of feature 25294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473242891 of field osm_id of feature 25295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473242894 of field osm_id of feature 25296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473242896 of field osm_id of feature 25297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473244446 of field osm_id of feature 25298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473244447 of field osm_id of feature 25299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473245650 of field osm_id of feature 25300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473245651 of field osm_id of feature 25301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473247070 of field osm_id of feature 25302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473247071 of field osm_id of feature 25303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473247072 of field osm_id of feature 25304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473247073 of field osm_id of feature 25305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473250218 of field osm_id of feature 25306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473250219 of field osm_id of feature 25307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473252738 of field osm_id of feature 25308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473252739 of field osm_id of feature 25309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473252740 of field osm_id of feature 25310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473252741 of field osm_id of feature 25311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473253635 of field osm_id of feature 25312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473253636 of field osm_id of feature 25313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473253637 of field osm_id of feature 25314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473253638 of field osm_id of feature 25315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473264288 of field osm_id of feature 25316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473264424 of field osm_id of feature 25317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473264425 of field osm_id of feature 25318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376604 of field osm_id of feature 25319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376605 of field osm_id of feature 25320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376606 of field osm_id of feature 25321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376607 of field osm_id of feature 25322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376608 of field osm_id of feature 25323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376609 of field osm_id of feature 25324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376610 of field osm_id of feature 25325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376611 of field osm_id of feature 25326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376612 of field osm_id of feature 25327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376613 of field osm_id of feature 25328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473376614 of field osm_id of feature 25329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393241 of field osm_id of feature 25330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393244 of field osm_id of feature 25331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393247 of field osm_id of feature 25332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393249 of field osm_id of feature 25333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393252 of field osm_id of feature 25334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393255 of field osm_id of feature 25335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393258 of field osm_id of feature 25336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473393261 of field osm_id of feature 25337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473395364 of field osm_id of feature 25338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402813 of field osm_id of feature 25339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402814 of field osm_id of feature 25340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402815 of field osm_id of feature 25341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402816 of field osm_id of feature 25342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402817 of field osm_id of feature 25343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402818 of field osm_id of feature 25344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402819 of field osm_id of feature 25345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402820 of field osm_id of feature 25346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402821 of field osm_id of feature 25347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473402822 of field osm_id of feature 25348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404168 of field osm_id of feature 25349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404169 of field osm_id of feature 25350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404170 of field osm_id of feature 25351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404171 of field osm_id of feature 25352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404172 of field osm_id of feature 25353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473404173 of field osm_id of feature 25354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473405282 of field osm_id of feature 25355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473405286 of field osm_id of feature 25356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473405289 of field osm_id of feature 25357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473409069 of field osm_id of feature 25358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473409070 of field osm_id of feature 25359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473409071 of field osm_id of feature 25360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473409072 of field osm_id of feature 25361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473410805 of field osm_id of feature 25362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473432128 of field osm_id of feature 25363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473432680 of field osm_id of feature 25364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473437228 of field osm_id of feature 25365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473437229 of field osm_id of feature 25366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473437230 of field osm_id of feature 25367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473437230 of field osm_id of feature 25368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473437232 of field osm_id of feature 25369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473439150 of field osm_id of feature 25370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473439151 of field osm_id of feature 25371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473439152 of field osm_id of feature 25372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440852 of field osm_id of feature 25373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440853 of field osm_id of feature 25374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440854 of field osm_id of feature 25375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440855 of field osm_id of feature 25376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440856 of field osm_id of feature 25377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440857 of field osm_id of feature 25378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440858 of field osm_id of feature 25379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440859 of field osm_id of feature 25380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440860 of field osm_id of feature 25381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473440861 of field osm_id of feature 25382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449712 of field osm_id of feature 25383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449713 of field osm_id of feature 25384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449714 of field osm_id of feature 25385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449715 of field osm_id of feature 25386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449716 of field osm_id of feature 25387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449717 of field osm_id of feature 25388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449718 of field osm_id of feature 25389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473449719 of field osm_id of feature 25390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473450965 of field osm_id of feature 25391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473450966 of field osm_id of feature 25392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473450967 of field osm_id of feature 25393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477184 of field osm_id of feature 25394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477185 of field osm_id of feature 25395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477186 of field osm_id of feature 25396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477187 of field osm_id of feature 25397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477188 of field osm_id of feature 25398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477189 of field osm_id of feature 25399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477190 of field osm_id of feature 25400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473477191 of field osm_id of feature 25401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473486415 of field osm_id of feature 25402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473519318 of field osm_id of feature 25403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473535920 of field osm_id of feature 25404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473535921 of field osm_id of feature 25405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473607917 of field osm_id of feature 25406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649027 of field osm_id of feature 25407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649030 of field osm_id of feature 25408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649033 of field osm_id of feature 25409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649037 of field osm_id of feature 25410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649040 of field osm_id of feature 25411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473649041 of field osm_id of feature 25412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473653269 of field osm_id of feature 25413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656679 of field osm_id of feature 25414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656680 of field osm_id of feature 25415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656681 of field osm_id of feature 25416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656682 of field osm_id of feature 25417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656683 of field osm_id of feature 25418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473656684 of field osm_id of feature 25419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473671620 of field osm_id of feature 25420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473671621 of field osm_id of feature 25421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473671622 of field osm_id of feature 25422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473671623 of field osm_id of feature 25423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473675607 of field osm_id of feature 25424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473833482 of field osm_id of feature 25425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473833483 of field osm_id of feature 25426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473833484 of field osm_id of feature 25427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473833485 of field osm_id of feature 25428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473833656 of field osm_id of feature 25429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835647 of field osm_id of feature 25430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835648 of field osm_id of feature 25431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835649 of field osm_id of feature 25432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835650 of field osm_id of feature 25433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835651 of field osm_id of feature 25434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835652 of field osm_id of feature 25435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835653 of field osm_id of feature 25436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835654 of field osm_id of feature 25437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835655 of field osm_id of feature 25438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473835656 of field osm_id of feature 25439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839750 of field osm_id of feature 25440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839751 of field osm_id of feature 25441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839753 of field osm_id of feature 25442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839754 of field osm_id of feature 25443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839757 of field osm_id of feature 25444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839759 of field osm_id of feature 25445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839762 of field osm_id of feature 25446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839766 of field osm_id of feature 25447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839767 of field osm_id of feature 25448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473839769 of field osm_id of feature 25449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473843901 of field osm_id of feature 25450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473843902 of field osm_id of feature 25451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473843903 of field osm_id of feature 25452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473843904 of field osm_id of feature 25453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473848459 of field osm_id of feature 25454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473848460 of field osm_id of feature 25455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473848461 of field osm_id of feature 25456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473848462 of field osm_id of feature 25457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473848463 of field osm_id of feature 25458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473849329 of field osm_id of feature 25459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473849330 of field osm_id of feature 25460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473849331 of field osm_id of feature 25461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473851747 of field osm_id of feature 25462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473851748 of field osm_id of feature 25463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473853539 of field osm_id of feature 25464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473853541 of field osm_id of feature 25465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473853542 of field osm_id of feature 25466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473853543 of field osm_id of feature 25467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473876349 of field osm_id of feature 25468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473876352 of field osm_id of feature 25469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473876354 of field osm_id of feature 25470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473880866 of field osm_id of feature 25471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473880868 of field osm_id of feature 25472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473880869 of field osm_id of feature 25473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473887259 of field osm_id of feature 25474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473888861 of field osm_id of feature 25475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473888862 of field osm_id of feature 25476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473898538 of field osm_id of feature 25477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473904325 of field osm_id of feature 25478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473947378 of field osm_id of feature 25479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473947379 of field osm_id of feature 25480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473949923 of field osm_id of feature 25481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473949923 of field osm_id of feature 25482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473952148 of field osm_id of feature 25483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473952149 of field osm_id of feature 25484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473952150 of field osm_id of feature 25485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473961823 of field osm_id of feature 25486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473962832 of field osm_id of feature 25487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473962833 of field osm_id of feature 25488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473962834 of field osm_id of feature 25489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473962835 of field osm_id of feature 25490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966239 of field osm_id of feature 25491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966240 of field osm_id of feature 25492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966241 of field osm_id of feature 25493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966242 of field osm_id of feature 25494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966244 of field osm_id of feature 25495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473966245 of field osm_id of feature 25496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969068 of field osm_id of feature 25497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969069 of field osm_id of feature 25498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969070 of field osm_id of feature 25499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969071 of field osm_id of feature 25500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969072 of field osm_id of feature 25501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969074 of field osm_id of feature 25502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969075 of field osm_id of feature 25503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969077 of field osm_id of feature 25504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969078 of field osm_id of feature 25505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473969082 of field osm_id of feature 25506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 473971075 of field osm_id of feature 25507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474181788 of field osm_id of feature 25508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474181789 of field osm_id of feature 25509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474187781 of field osm_id of feature 25510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474197145 of field osm_id of feature 25511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474197145 of field osm_id of feature 25512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474210631 of field osm_id of feature 25513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474210633 of field osm_id of feature 25514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474210635 of field osm_id of feature 25515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474210636 of field osm_id of feature 25516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474210638 of field osm_id of feature 25517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474275576 of field osm_id of feature 25518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474275658 of field osm_id of feature 25519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276230 of field osm_id of feature 25520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276614 of field osm_id of feature 25521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276615 of field osm_id of feature 25522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276883 of field osm_id of feature 25523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276884 of field osm_id of feature 25524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276885 of field osm_id of feature 25525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276886 of field osm_id of feature 25526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276886 of field osm_id of feature 25527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276887 of field osm_id of feature 25528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474276888 of field osm_id of feature 25529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474277747 of field osm_id of feature 25530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474277748 of field osm_id of feature 25531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474278239 of field osm_id of feature 25532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474280009 of field osm_id of feature 25533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474283881 of field osm_id of feature 25534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288890 of field osm_id of feature 25535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288891 of field osm_id of feature 25536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288892 of field osm_id of feature 25537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288893 of field osm_id of feature 25538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288893 of field osm_id of feature 25539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288900 of field osm_id of feature 25540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288904 of field osm_id of feature 25541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474288905 of field osm_id of feature 25542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474300973 of field osm_id of feature 25543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474300974 of field osm_id of feature 25544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474300998 of field osm_id of feature 25545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301011 of field osm_id of feature 25546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301013 of field osm_id of feature 25547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301017 of field osm_id of feature 25548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301018 of field osm_id of feature 25549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301019 of field osm_id of feature 25550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301020 of field osm_id of feature 25551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301021 of field osm_id of feature 25552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301022 of field osm_id of feature 25553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474301023 of field osm_id of feature 25554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474334025 of field osm_id of feature 25555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474334026 of field osm_id of feature 25556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474334027 of field osm_id of feature 25557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474413086 of field osm_id of feature 25558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474422765 of field osm_id of feature 25559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474422766 of field osm_id of feature 25560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474422767 of field osm_id of feature 25561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474427033 of field osm_id of feature 25562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474427034 of field osm_id of feature 25563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474427035 of field osm_id of feature 25564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474427037 of field osm_id of feature 25565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428336 of field osm_id of feature 25566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428337 of field osm_id of feature 25567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428337 of field osm_id of feature 25568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428338 of field osm_id of feature 25569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428339 of field osm_id of feature 25570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474428340 of field osm_id of feature 25571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474431399 of field osm_id of feature 25572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474442486 of field osm_id of feature 25573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474442488 of field osm_id of feature 25574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474442489 of field osm_id of feature 25575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474442490 of field osm_id of feature 25576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474442491 of field osm_id of feature 25577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446518 of field osm_id of feature 25578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446519 of field osm_id of feature 25579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446520 of field osm_id of feature 25580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446528 of field osm_id of feature 25581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446530 of field osm_id of feature 25582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446533 of field osm_id of feature 25583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446536 of field osm_id of feature 25584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446538 of field osm_id of feature 25585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474446540 of field osm_id of feature 25586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450054 of field osm_id of feature 25587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450055 of field osm_id of feature 25588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450056 of field osm_id of feature 25589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450057 of field osm_id of feature 25590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450058 of field osm_id of feature 25591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474450059 of field osm_id of feature 25592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474456179 of field osm_id of feature 25593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474456180 of field osm_id of feature 25594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474456181 of field osm_id of feature 25595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474456182 of field osm_id of feature 25596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474457762 of field osm_id of feature 25597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474457763 of field osm_id of feature 25598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474464961 of field osm_id of feature 25599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474464966 of field osm_id of feature 25600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474467367 of field osm_id of feature 25601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474467367 of field osm_id of feature 25602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474467368 of field osm_id of feature 25603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474467369 of field osm_id of feature 25604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474467371 of field osm_id of feature 25605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470207 of field osm_id of feature 25606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470209 of field osm_id of feature 25607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470209 of field osm_id of feature 25608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470210 of field osm_id of feature 25609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470211 of field osm_id of feature 25610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470212 of field osm_id of feature 25611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470213 of field osm_id of feature 25612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470214 of field osm_id of feature 25613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470215 of field osm_id of feature 25614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470216 of field osm_id of feature 25615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470217 of field osm_id of feature 25616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474470217 of field osm_id of feature 25617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471903 of field osm_id of feature 25618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471906 of field osm_id of feature 25619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471910 of field osm_id of feature 25620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471913 of field osm_id of feature 25621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471917 of field osm_id of feature 25622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474471920 of field osm_id of feature 25623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476223 of field osm_id of feature 25624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476224 of field osm_id of feature 25625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476225 of field osm_id of feature 25626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476226 of field osm_id of feature 25627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476227 of field osm_id of feature 25628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476228 of field osm_id of feature 25629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474476229 of field osm_id of feature 25630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489304 of field osm_id of feature 25631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489305 of field osm_id of feature 25632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489306 of field osm_id of feature 25633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489307 of field osm_id of feature 25634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489308 of field osm_id of feature 25635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474489309 of field osm_id of feature 25636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474490912 of field osm_id of feature 25637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492132 of field osm_id of feature 25638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492133 of field osm_id of feature 25639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492135 of field osm_id of feature 25640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492136 of field osm_id of feature 25641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492319 of field osm_id of feature 25642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492320 of field osm_id of feature 25643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492321 of field osm_id of feature 25644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474492437 of field osm_id of feature 25645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474493462 of field osm_id of feature 25646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474493629 of field osm_id of feature 25647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474493629 of field osm_id of feature 25648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474493630 of field osm_id of feature 25649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474493630 of field osm_id of feature 25650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474494406 of field osm_id of feature 25651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474494407 of field osm_id of feature 25652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474494408 of field osm_id of feature 25653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474494623 of field osm_id of feature 25654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474495069 of field osm_id of feature 25655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474495070 of field osm_id of feature 25656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474495071 of field osm_id of feature 25657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474495161 of field osm_id of feature 25658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474495162 of field osm_id of feature 25659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497470 of field osm_id of feature 25660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497473 of field osm_id of feature 25661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497474 of field osm_id of feature 25662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497475 of field osm_id of feature 25663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497476 of field osm_id of feature 25664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497477 of field osm_id of feature 25665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497768 of field osm_id of feature 25666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497769 of field osm_id of feature 25667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497770 of field osm_id of feature 25668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497771 of field osm_id of feature 25669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497841 of field osm_id of feature 25670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474497842 of field osm_id of feature 25671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474502476 of field osm_id of feature 25672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474502476 of field osm_id of feature 25673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514436 of field osm_id of feature 25674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514437 of field osm_id of feature 25675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514438 of field osm_id of feature 25676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514439 of field osm_id of feature 25677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514439 of field osm_id of feature 25678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514440 of field osm_id of feature 25679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514440 of field osm_id of feature 25680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514441 of field osm_id of feature 25681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474514441 of field osm_id of feature 25682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474521478 of field osm_id of feature 25683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474523246 of field osm_id of feature 25684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474523285 of field osm_id of feature 25685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474523285 of field osm_id of feature 25686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474529406 of field osm_id of feature 25687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636203 of field osm_id of feature 25688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636207 of field osm_id of feature 25689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636208 of field osm_id of feature 25690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636209 of field osm_id of feature 25691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636210 of field osm_id of feature 25692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636211 of field osm_id of feature 25693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474636212 of field osm_id of feature 25694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474639286 of field osm_id of feature 25695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474639288 of field osm_id of feature 25696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640778 of field osm_id of feature 25697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640779 of field osm_id of feature 25698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640780 of field osm_id of feature 25699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640781 of field osm_id of feature 25700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640782 of field osm_id of feature 25701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640783 of field osm_id of feature 25702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640784 of field osm_id of feature 25703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640785 of field osm_id of feature 25704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640786 of field osm_id of feature 25705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640787 of field osm_id of feature 25706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640789 of field osm_id of feature 25707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640790 of field osm_id of feature 25708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474640791 of field osm_id of feature 25709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474645121 of field osm_id of feature 25710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474647990 of field osm_id of feature 25711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474659704 of field osm_id of feature 25712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474659705 of field osm_id of feature 25713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660712 of field osm_id of feature 25714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660713 of field osm_id of feature 25715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660714 of field osm_id of feature 25716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660715 of field osm_id of feature 25717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660716 of field osm_id of feature 25718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660717 of field osm_id of feature 25719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474660718 of field osm_id of feature 25720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662858 of field osm_id of feature 25721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662859 of field osm_id of feature 25722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662861 of field osm_id of feature 25723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662862 of field osm_id of feature 25724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662863 of field osm_id of feature 25725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662864 of field osm_id of feature 25726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662865 of field osm_id of feature 25727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474662867 of field osm_id of feature 25728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474663080 of field osm_id of feature 25729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474663081 of field osm_id of feature 25730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474663082 of field osm_id of feature 25731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474665413 of field osm_id of feature 25732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474665414 of field osm_id of feature 25733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474665415 of field osm_id of feature 25734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474665416 of field osm_id of feature 25735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669913 of field osm_id of feature 25736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669914 of field osm_id of feature 25737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669915 of field osm_id of feature 25738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669916 of field osm_id of feature 25739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669917 of field osm_id of feature 25740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474669918 of field osm_id of feature 25741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474670379 of field osm_id of feature 25742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474670380 of field osm_id of feature 25743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474674047 of field osm_id of feature 25744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474674048 of field osm_id of feature 25745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676252 of field osm_id of feature 25746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676252 of field osm_id of feature 25747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676253 of field osm_id of feature 25748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676254 of field osm_id of feature 25749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676255 of field osm_id of feature 25750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676256 of field osm_id of feature 25751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676258 of field osm_id of feature 25752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676259 of field osm_id of feature 25753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676260 of field osm_id of feature 25754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474676261 of field osm_id of feature 25755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474677979 of field osm_id of feature 25756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474677980 of field osm_id of feature 25757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474677981 of field osm_id of feature 25758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474677982 of field osm_id of feature 25759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474677983 of field osm_id of feature 25760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474691972 of field osm_id of feature 25761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474691973 of field osm_id of feature 25762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474691974 of field osm_id of feature 25763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474691975 of field osm_id of feature 25764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474691976 of field osm_id of feature 25765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474692067 of field osm_id of feature 25766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701183 of field osm_id of feature 25767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701184 of field osm_id of feature 25768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701185 of field osm_id of feature 25769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701186 of field osm_id of feature 25770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701187 of field osm_id of feature 25771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701188 of field osm_id of feature 25772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701189 of field osm_id of feature 25773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474701190 of field osm_id of feature 25774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707509 of field osm_id of feature 25775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707514 of field osm_id of feature 25776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707515 of field osm_id of feature 25777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707516 of field osm_id of feature 25778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707517 of field osm_id of feature 25779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474707518 of field osm_id of feature 25780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709305 of field osm_id of feature 25781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709306 of field osm_id of feature 25782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709307 of field osm_id of feature 25783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709308 of field osm_id of feature 25784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709309 of field osm_id of feature 25785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474709310 of field osm_id of feature 25786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474710401 of field osm_id of feature 25787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474710407 of field osm_id of feature 25788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474710411 of field osm_id of feature 25789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474832235 of field osm_id of feature 25790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474832236 of field osm_id of feature 25791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474832236 of field osm_id of feature 25792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474832237 of field osm_id of feature 25793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474832238 of field osm_id of feature 25794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474859471 of field osm_id of feature 25795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474863765 of field osm_id of feature 25796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474863766 of field osm_id of feature 25797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474863767 of field osm_id of feature 25798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474863768 of field osm_id of feature 25799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865664 of field osm_id of feature 25800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865665 of field osm_id of feature 25801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865666 of field osm_id of feature 25802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865667 of field osm_id of feature 25803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865669 of field osm_id of feature 25804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865670 of field osm_id of feature 25805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474865946 of field osm_id of feature 25806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474871008 of field osm_id of feature 25807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474871009 of field osm_id of feature 25808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474871010 of field osm_id of feature 25809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474871011 of field osm_id of feature 25810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474871012 of field osm_id of feature 25811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474872959 of field osm_id of feature 25812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474872960 of field osm_id of feature 25813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474874910 of field osm_id of feature 25814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885595 of field osm_id of feature 25815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885596 of field osm_id of feature 25816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885597 of field osm_id of feature 25817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885598 of field osm_id of feature 25818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885599 of field osm_id of feature 25819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885600 of field osm_id of feature 25820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885601 of field osm_id of feature 25821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474885602 of field osm_id of feature 25822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474900177 of field osm_id of feature 25823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474900179 of field osm_id of feature 25824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474900181 of field osm_id of feature 25825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901428 of field osm_id of feature 25826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901430 of field osm_id of feature 25827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901431 of field osm_id of feature 25828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901864 of field osm_id of feature 25829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901865 of field osm_id of feature 25830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901866 of field osm_id of feature 25831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901867 of field osm_id of feature 25832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901868 of field osm_id of feature 25833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901869 of field osm_id of feature 25834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474901870 of field osm_id of feature 25835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474903280 of field osm_id of feature 25836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474903281 of field osm_id of feature 25837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474903282 of field osm_id of feature 25838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474903283 of field osm_id of feature 25839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474903284 of field osm_id of feature 25840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474908502 of field osm_id of feature 25841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474908503 of field osm_id of feature 25842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474908504 of field osm_id of feature 25843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474909152 of field osm_id of feature 25844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474918616 of field osm_id of feature 25845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474918617 of field osm_id of feature 25846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474918618 of field osm_id of feature 25847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474923900 of field osm_id of feature 25848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474925788 of field osm_id of feature 25849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474926522 of field osm_id of feature 25850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474926523 of field osm_id of feature 25851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928040 of field osm_id of feature 25852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928041 of field osm_id of feature 25853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928043 of field osm_id of feature 25854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928044 of field osm_id of feature 25855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928044 of field osm_id of feature 25856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928046 of field osm_id of feature 25857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928047 of field osm_id of feature 25858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928048 of field osm_id of feature 25859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474928049 of field osm_id of feature 25860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474929430 of field osm_id of feature 25861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474929431 of field osm_id of feature 25862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474929433 of field osm_id of feature 25863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474929434 of field osm_id of feature 25864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474929435 of field osm_id of feature 25865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 474976492 of field osm_id of feature 25866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475075257 of field osm_id of feature 25867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475075258 of field osm_id of feature 25868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475075260 of field osm_id of feature 25869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475102908 of field osm_id of feature 25870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110752 of field osm_id of feature 25871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110753 of field osm_id of feature 25872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110754 of field osm_id of feature 25873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110755 of field osm_id of feature 25874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110756 of field osm_id of feature 25875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110757 of field osm_id of feature 25876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110759 of field osm_id of feature 25877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475110967 of field osm_id of feature 25878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116732 of field osm_id of feature 25879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116732 of field osm_id of feature 25880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116733 of field osm_id of feature 25881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116734 of field osm_id of feature 25882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116735 of field osm_id of feature 25883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116736 of field osm_id of feature 25884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116737 of field osm_id of feature 25885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116738 of field osm_id of feature 25886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116739 of field osm_id of feature 25887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116740 of field osm_id of feature 25888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116741 of field osm_id of feature 25889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475116742 of field osm_id of feature 25890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120452 of field osm_id of feature 25891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120453 of field osm_id of feature 25892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120454 of field osm_id of feature 25893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120456 of field osm_id of feature 25894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120461 of field osm_id of feature 25895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120462 of field osm_id of feature 25896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120463 of field osm_id of feature 25897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120464 of field osm_id of feature 25898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120466 of field osm_id of feature 25899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120467 of field osm_id of feature 25900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120468 of field osm_id of feature 25901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475120469 of field osm_id of feature 25902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475123612 of field osm_id of feature 25903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475123613 of field osm_id of feature 25904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475123614 of field osm_id of feature 25905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475123615 of field osm_id of feature 25906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132220 of field osm_id of feature 25907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132221 of field osm_id of feature 25908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132222 of field osm_id of feature 25909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132223 of field osm_id of feature 25910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132224 of field osm_id of feature 25911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132225 of field osm_id of feature 25912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475132226 of field osm_id of feature 25913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134293 of field osm_id of feature 25914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134294 of field osm_id of feature 25915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134295 of field osm_id of feature 25916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134296 of field osm_id of feature 25917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134297 of field osm_id of feature 25918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475134298 of field osm_id of feature 25919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136316 of field osm_id of feature 25920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136317 of field osm_id of feature 25921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136318 of field osm_id of feature 25922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136319 of field osm_id of feature 25923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136320 of field osm_id of feature 25924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136321 of field osm_id of feature 25925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136322 of field osm_id of feature 25926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475136323 of field osm_id of feature 25927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475138963 of field osm_id of feature 25928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475141295 of field osm_id of feature 25929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475156713 of field osm_id of feature 25930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475156714 of field osm_id of feature 25931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475156715 of field osm_id of feature 25932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475156716 of field osm_id of feature 25933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475156717 of field osm_id of feature 25934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475157986 of field osm_id of feature 25935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475157987 of field osm_id of feature 25936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475157988 of field osm_id of feature 25937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475157992 of field osm_id of feature 25938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475157996 of field osm_id of feature 25939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158000 of field osm_id of feature 25940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158906 of field osm_id of feature 25941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158906 of field osm_id of feature 25942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158907 of field osm_id of feature 25943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158908 of field osm_id of feature 25944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158908 of field osm_id of feature 25945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475158910 of field osm_id of feature 25946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475159368 of field osm_id of feature 25947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475159371 of field osm_id of feature 25948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475159374 of field osm_id of feature 25949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475160445 of field osm_id of feature 25950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162280 of field osm_id of feature 25951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162281 of field osm_id of feature 25952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162283 of field osm_id of feature 25953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162283 of field osm_id of feature 25954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162284 of field osm_id of feature 25955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475162284 of field osm_id of feature 25956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475163344 of field osm_id of feature 25957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475163348 of field osm_id of feature 25958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475163615 of field osm_id of feature 25959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475163616 of field osm_id of feature 25960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475163617 of field osm_id of feature 25961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475166106 of field osm_id of feature 25962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475166109 of field osm_id of feature 25963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475171825 of field osm_id of feature 25964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475171826 of field osm_id of feature 25965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475171827 of field osm_id of feature 25966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475171828 of field osm_id of feature 25967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475171829 of field osm_id of feature 25968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475217889 of field osm_id of feature 25969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315914 of field osm_id of feature 25970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315915 of field osm_id of feature 25971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315916 of field osm_id of feature 25972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315917 of field osm_id of feature 25973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315918 of field osm_id of feature 25974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315919 of field osm_id of feature 25975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315920 of field osm_id of feature 25976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315921 of field osm_id of feature 25977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475315923 of field osm_id of feature 25978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475319893 of field osm_id of feature 25979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475321431 of field osm_id of feature 25980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325740 of field osm_id of feature 25981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325741 of field osm_id of feature 25982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325974 of field osm_id of feature 25983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325977 of field osm_id of feature 25984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325978 of field osm_id of feature 25985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325979 of field osm_id of feature 25986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325980 of field osm_id of feature 25987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325981 of field osm_id of feature 25988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325982 of field osm_id of feature 25989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475325983 of field osm_id of feature 25990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475326808 of field osm_id of feature 25991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475326809 of field osm_id of feature 25992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475326810 of field osm_id of feature 25993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327843 of field osm_id of feature 25994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327844 of field osm_id of feature 25995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327845 of field osm_id of feature 25996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327846 of field osm_id of feature 25997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327847 of field osm_id of feature 25998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327848 of field osm_id of feature 25999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475327849 of field osm_id of feature 26000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330612 of field osm_id of feature 26001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330613 of field osm_id of feature 26002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330614 of field osm_id of feature 26003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330615 of field osm_id of feature 26004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330616 of field osm_id of feature 26005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475330617 of field osm_id of feature 26006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332200 of field osm_id of feature 26007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332206 of field osm_id of feature 26008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332210 of field osm_id of feature 26009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332213 of field osm_id of feature 26010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332217 of field osm_id of feature 26011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332224 of field osm_id of feature 26012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332232 of field osm_id of feature 26013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475332237 of field osm_id of feature 26014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334596 of field osm_id of feature 26015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334597 of field osm_id of feature 26016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334598 of field osm_id of feature 26017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334599 of field osm_id of feature 26018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334813 of field osm_id of feature 26019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334815 of field osm_id of feature 26020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475334818 of field osm_id of feature 26021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475336749 of field osm_id of feature 26022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475336750 of field osm_id of feature 26023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475336751 of field osm_id of feature 26024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337483 of field osm_id of feature 26025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337484 of field osm_id of feature 26026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337485 of field osm_id of feature 26027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337630 of field osm_id of feature 26028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337631 of field osm_id of feature 26029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475337632 of field osm_id of feature 26030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339251 of field osm_id of feature 26031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339252 of field osm_id of feature 26032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339253 of field osm_id of feature 26033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339254 of field osm_id of feature 26034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339255 of field osm_id of feature 26035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339256 of field osm_id of feature 26036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339257 of field osm_id of feature 26037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339258 of field osm_id of feature 26038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339259 of field osm_id of feature 26039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339705 of field osm_id of feature 26040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339706 of field osm_id of feature 26041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339707 of field osm_id of feature 26042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339708 of field osm_id of feature 26043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339710 of field osm_id of feature 26044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339711 of field osm_id of feature 26045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475339714 of field osm_id of feature 26046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342007 of field osm_id of feature 26047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342012 of field osm_id of feature 26048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342013 of field osm_id of feature 26049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342014 of field osm_id of feature 26050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342015 of field osm_id of feature 26051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342230 of field osm_id of feature 26052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342232 of field osm_id of feature 26053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342233 of field osm_id of feature 26054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342234 of field osm_id of feature 26055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475342235 of field osm_id of feature 26056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475343497 of field osm_id of feature 26057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475343498 of field osm_id of feature 26058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475343499 of field osm_id of feature 26059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345959 of field osm_id of feature 26060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345961 of field osm_id of feature 26061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345965 of field osm_id of feature 26062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345967 of field osm_id of feature 26063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345970 of field osm_id of feature 26064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345974 of field osm_id of feature 26065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345976 of field osm_id of feature 26066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345979 of field osm_id of feature 26067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345981 of field osm_id of feature 26068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345982 of field osm_id of feature 26069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475345983 of field osm_id of feature 26070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475348064 of field osm_id of feature 26071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475348065 of field osm_id of feature 26072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475348067 of field osm_id of feature 26073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475348068 of field osm_id of feature 26074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475356373 of field osm_id of feature 26075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475356374 of field osm_id of feature 26076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475356375 of field osm_id of feature 26077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475356376 of field osm_id of feature 26078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475356377 of field osm_id of feature 26079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360855 of field osm_id of feature 26080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360856 of field osm_id of feature 26081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360857 of field osm_id of feature 26082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360858 of field osm_id of feature 26083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360859 of field osm_id of feature 26084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360860 of field osm_id of feature 26085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360861 of field osm_id of feature 26086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360862 of field osm_id of feature 26087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475360863 of field osm_id of feature 26088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475362977 of field osm_id of feature 26089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475362978 of field osm_id of feature 26090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475364577 of field osm_id of feature 26091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475364578 of field osm_id of feature 26092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475364579 of field osm_id of feature 26093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475364580 of field osm_id of feature 26094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475364581 of field osm_id of feature 26095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475365996 of field osm_id of feature 26096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475365998 of field osm_id of feature 26097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475366000 of field osm_id of feature 26098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475366001 of field osm_id of feature 26099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475366002 of field osm_id of feature 26100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475366003 of field osm_id of feature 26101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378462 of field osm_id of feature 26102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378463 of field osm_id of feature 26103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378464 of field osm_id of feature 26104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378465 of field osm_id of feature 26105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378466 of field osm_id of feature 26106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378467 of field osm_id of feature 26107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378468 of field osm_id of feature 26108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378469 of field osm_id of feature 26109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475378470 of field osm_id of feature 26110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475384928 of field osm_id of feature 26111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475384930 of field osm_id of feature 26112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475384931 of field osm_id of feature 26113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475384932 of field osm_id of feature 26114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475384933 of field osm_id of feature 26115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407233 of field osm_id of feature 26116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407234 of field osm_id of feature 26117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407235 of field osm_id of feature 26118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407236 of field osm_id of feature 26119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407237 of field osm_id of feature 26120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475407238 of field osm_id of feature 26121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475640446 of field osm_id of feature 26122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475907154 of field osm_id of feature 26123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475907155 of field osm_id of feature 26124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918126 of field osm_id of feature 26125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918127 of field osm_id of feature 26126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918128 of field osm_id of feature 26127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918133 of field osm_id of feature 26128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918134 of field osm_id of feature 26129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918135 of field osm_id of feature 26130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475918136 of field osm_id of feature 26131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919816 of field osm_id of feature 26132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919817 of field osm_id of feature 26133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919818 of field osm_id of feature 26134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919819 of field osm_id of feature 26135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919820 of field osm_id of feature 26136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919821 of field osm_id of feature 26137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919822 of field osm_id of feature 26138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475919823 of field osm_id of feature 26139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475921344 of field osm_id of feature 26140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475921345 of field osm_id of feature 26141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475921346 of field osm_id of feature 26142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475921347 of field osm_id of feature 26143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475924615 of field osm_id of feature 26144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475924616 of field osm_id of feature 26145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475927610 of field osm_id of feature 26146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475933299 of field osm_id of feature 26147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475933300 of field osm_id of feature 26148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475933301 of field osm_id of feature 26149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475933302 of field osm_id of feature 26150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475934164 of field osm_id of feature 26151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475934165 of field osm_id of feature 26152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475934166 of field osm_id of feature 26153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936541 of field osm_id of feature 26154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936542 of field osm_id of feature 26155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936543 of field osm_id of feature 26156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936544 of field osm_id of feature 26157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936545 of field osm_id of feature 26158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936546 of field osm_id of feature 26159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936547 of field osm_id of feature 26160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936548 of field osm_id of feature 26161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475936549 of field osm_id of feature 26162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475940337 of field osm_id of feature 26163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475940338 of field osm_id of feature 26164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475940339 of field osm_id of feature 26165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475940340 of field osm_id of feature 26166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475940341 of field osm_id of feature 26167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475941379 of field osm_id of feature 26168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475947528 of field osm_id of feature 26169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475947529 of field osm_id of feature 26170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475948499 of field osm_id of feature 26171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475952926 of field osm_id of feature 26172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475952928 of field osm_id of feature 26173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475953270 of field osm_id of feature 26174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475959111 of field osm_id of feature 26175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475959112 of field osm_id of feature 26176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 475959113 of field osm_id of feature 26177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106525 of field osm_id of feature 26178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106528 of field osm_id of feature 26179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106529 of field osm_id of feature 26180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106530 of field osm_id of feature 26181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106531 of field osm_id of feature 26182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106532 of field osm_id of feature 26183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106533 of field osm_id of feature 26184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106534 of field osm_id of feature 26185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476106535 of field osm_id of feature 26186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109713 of field osm_id of feature 26187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109714 of field osm_id of feature 26188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109715 of field osm_id of feature 26189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109716 of field osm_id of feature 26190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109717 of field osm_id of feature 26191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476109718 of field osm_id of feature 26192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476111476 of field osm_id of feature 26193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112155 of field osm_id of feature 26194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112156 of field osm_id of feature 26195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112157 of field osm_id of feature 26196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112159 of field osm_id of feature 26197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112161 of field osm_id of feature 26198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476112208 of field osm_id of feature 26199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138598 of field osm_id of feature 26200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138599 of field osm_id of feature 26201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138600 of field osm_id of feature 26202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138601 of field osm_id of feature 26203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138602 of field osm_id of feature 26204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138603 of field osm_id of feature 26205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138604 of field osm_id of feature 26206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138605 of field osm_id of feature 26207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138606 of field osm_id of feature 26208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138607 of field osm_id of feature 26209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138608 of field osm_id of feature 26210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476138609 of field osm_id of feature 26211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476139395 of field osm_id of feature 26212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476139920 of field osm_id of feature 26213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476139921 of field osm_id of feature 26214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476139922 of field osm_id of feature 26215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145597 of field osm_id of feature 26216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145598 of field osm_id of feature 26217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145599 of field osm_id of feature 26218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145600 of field osm_id of feature 26219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145601 of field osm_id of feature 26220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145602 of field osm_id of feature 26221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145603 of field osm_id of feature 26222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145604 of field osm_id of feature 26223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145605 of field osm_id of feature 26224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145606 of field osm_id of feature 26225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145607 of field osm_id of feature 26226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145608 of field osm_id of feature 26227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145609 of field osm_id of feature 26228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145610 of field osm_id of feature 26229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476145611 of field osm_id of feature 26230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147257 of field osm_id of feature 26231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147258 of field osm_id of feature 26232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147259 of field osm_id of feature 26233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147260 of field osm_id of feature 26234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147261 of field osm_id of feature 26235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147262 of field osm_id of feature 26236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147263 of field osm_id of feature 26237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147264 of field osm_id of feature 26238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147265 of field osm_id of feature 26239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147266 of field osm_id of feature 26240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147268 of field osm_id of feature 26241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147269 of field osm_id of feature 26242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147270 of field osm_id of feature 26243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147271 of field osm_id of feature 26244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147272 of field osm_id of feature 26245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147273 of field osm_id of feature 26246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476147274 of field osm_id of feature 26247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148399 of field osm_id of feature 26248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148400 of field osm_id of feature 26249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148401 of field osm_id of feature 26250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148402 of field osm_id of feature 26251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148403 of field osm_id of feature 26252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148404 of field osm_id of feature 26253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148405 of field osm_id of feature 26254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148406 of field osm_id of feature 26255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148407 of field osm_id of feature 26256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148408 of field osm_id of feature 26257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148409 of field osm_id of feature 26258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148410 of field osm_id of feature 26259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476148411 of field osm_id of feature 26260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149333 of field osm_id of feature 26261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149334 of field osm_id of feature 26262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149335 of field osm_id of feature 26263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149336 of field osm_id of feature 26264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149337 of field osm_id of feature 26265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149338 of field osm_id of feature 26266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149339 of field osm_id of feature 26267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476149340 of field osm_id of feature 26268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476158177 of field osm_id of feature 26269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476158178 of field osm_id of feature 26270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476158179 of field osm_id of feature 26271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476158180 of field osm_id of feature 26272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476158181 of field osm_id of feature 26273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476161037 of field osm_id of feature 26274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476161038 of field osm_id of feature 26275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476161039 of field osm_id of feature 26276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476161041 of field osm_id of feature 26277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162264 of field osm_id of feature 26278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162265 of field osm_id of feature 26279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162266 of field osm_id of feature 26280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162268 of field osm_id of feature 26281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162270 of field osm_id of feature 26282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162273 of field osm_id of feature 26283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162277 of field osm_id of feature 26284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162283 of field osm_id of feature 26285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162285 of field osm_id of feature 26286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476162287 of field osm_id of feature 26287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165171 of field osm_id of feature 26288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165172 of field osm_id of feature 26289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165173 of field osm_id of feature 26290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165174 of field osm_id of feature 26291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165175 of field osm_id of feature 26292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165176 of field osm_id of feature 26293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165177 of field osm_id of feature 26294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476165178 of field osm_id of feature 26295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166950 of field osm_id of feature 26296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166951 of field osm_id of feature 26297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166952 of field osm_id of feature 26298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166954 of field osm_id of feature 26299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166955 of field osm_id of feature 26300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166956 of field osm_id of feature 26301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476166957 of field osm_id of feature 26302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354432 of field osm_id of feature 26303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354436 of field osm_id of feature 26304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354441 of field osm_id of feature 26305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354444 of field osm_id of feature 26306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354448 of field osm_id of feature 26307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476354452 of field osm_id of feature 26308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476369778 of field osm_id of feature 26309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476374559 of field osm_id of feature 26310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476374560 of field osm_id of feature 26311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476374561 of field osm_id of feature 26312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476374562 of field osm_id of feature 26313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476377503 of field osm_id of feature 26314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476377503 of field osm_id of feature 26315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476377504 of field osm_id of feature 26316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476377509 of field osm_id of feature 26317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476380447 of field osm_id of feature 26318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476380448 of field osm_id of feature 26319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476380449 of field osm_id of feature 26320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476380450 of field osm_id of feature 26321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476380451 of field osm_id of feature 26322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476381191 of field osm_id of feature 26323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476381192 of field osm_id of feature 26324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476381194 of field osm_id of feature 26325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476381198 of field osm_id of feature 26326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389376 of field osm_id of feature 26327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389377 of field osm_id of feature 26328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389378 of field osm_id of feature 26329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389379 of field osm_id of feature 26330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389380 of field osm_id of feature 26331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389381 of field osm_id of feature 26332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389382 of field osm_id of feature 26333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389383 of field osm_id of feature 26334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389384 of field osm_id of feature 26335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389385 of field osm_id of feature 26336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389386 of field osm_id of feature 26337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389387 of field osm_id of feature 26338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389388 of field osm_id of feature 26339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389390 of field osm_id of feature 26340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389391 of field osm_id of feature 26341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389392 of field osm_id of feature 26342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389393 of field osm_id of feature 26343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389868 of field osm_id of feature 26344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476389869 of field osm_id of feature 26345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476392451 of field osm_id of feature 26346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476392452 of field osm_id of feature 26347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393001 of field osm_id of feature 26348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393002 of field osm_id of feature 26349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393003 of field osm_id of feature 26350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393004 of field osm_id of feature 26351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393006 of field osm_id of feature 26352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393007 of field osm_id of feature 26353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393008 of field osm_id of feature 26354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393653 of field osm_id of feature 26355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393656 of field osm_id of feature 26356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393663 of field osm_id of feature 26357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476393667 of field osm_id of feature 26358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476394496 of field osm_id of feature 26359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476394497 of field osm_id of feature 26360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395118 of field osm_id of feature 26361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395121 of field osm_id of feature 26362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395123 of field osm_id of feature 26363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395125 of field osm_id of feature 26364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395128 of field osm_id of feature 26365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395130 of field osm_id of feature 26366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395132 of field osm_id of feature 26367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476395133 of field osm_id of feature 26368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476396159 of field osm_id of feature 26369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476396168 of field osm_id of feature 26370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476396181 of field osm_id of feature 26371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476396189 of field osm_id of feature 26372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476400642 of field osm_id of feature 26373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476400643 of field osm_id of feature 26374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476400644 of field osm_id of feature 26375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476400645 of field osm_id of feature 26376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476400646 of field osm_id of feature 26377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407135 of field osm_id of feature 26378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407136 of field osm_id of feature 26379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407137 of field osm_id of feature 26380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407138 of field osm_id of feature 26381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407139 of field osm_id of feature 26382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407140 of field osm_id of feature 26383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407141 of field osm_id of feature 26384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407142 of field osm_id of feature 26385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407143 of field osm_id of feature 26386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407144 of field osm_id of feature 26387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407146 of field osm_id of feature 26388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407147 of field osm_id of feature 26389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407148 of field osm_id of feature 26390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407149 of field osm_id of feature 26391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407911 of field osm_id of feature 26392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407912 of field osm_id of feature 26393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407914 of field osm_id of feature 26394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407915 of field osm_id of feature 26395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407916 of field osm_id of feature 26396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407917 of field osm_id of feature 26397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407918 of field osm_id of feature 26398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476407919 of field osm_id of feature 26399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409688 of field osm_id of feature 26400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409690 of field osm_id of feature 26401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409692 of field osm_id of feature 26402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409696 of field osm_id of feature 26403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409700 of field osm_id of feature 26404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409704 of field osm_id of feature 26405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409708 of field osm_id of feature 26406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409713 of field osm_id of feature 26407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409716 of field osm_id of feature 26408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409719 of field osm_id of feature 26409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409722 of field osm_id of feature 26410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409725 of field osm_id of feature 26411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409728 of field osm_id of feature 26412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476409731 of field osm_id of feature 26413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476410462 of field osm_id of feature 26414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476410463 of field osm_id of feature 26415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476410464 of field osm_id of feature 26416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418060 of field osm_id of feature 26417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418061 of field osm_id of feature 26418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418062 of field osm_id of feature 26419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418138 of field osm_id of feature 26420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418139 of field osm_id of feature 26421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476418140 of field osm_id of feature 26422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476422970 of field osm_id of feature 26423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476422974 of field osm_id of feature 26424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476422981 of field osm_id of feature 26425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476428399 of field osm_id of feature 26426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476428400 of field osm_id of feature 26427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476428900 of field osm_id of feature 26428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476429330 of field osm_id of feature 26429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476431846 of field osm_id of feature 26430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476437931 of field osm_id of feature 26431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476437932 of field osm_id of feature 26432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476437933 of field osm_id of feature 26433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476437934 of field osm_id of feature 26434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476439321 of field osm_id of feature 26435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440141 of field osm_id of feature 26436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440462 of field osm_id of feature 26437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440463 of field osm_id of feature 26438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440464 of field osm_id of feature 26439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440466 of field osm_id of feature 26440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440467 of field osm_id of feature 26441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440468 of field osm_id of feature 26442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440469 of field osm_id of feature 26443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440470 of field osm_id of feature 26444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440471 of field osm_id of feature 26445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440472 of field osm_id of feature 26446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476440473 of field osm_id of feature 26447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689606 of field osm_id of feature 26448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689607 of field osm_id of feature 26449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689608 of field osm_id of feature 26450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689609 of field osm_id of feature 26451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689610 of field osm_id of feature 26452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689614 of field osm_id of feature 26453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689617 of field osm_id of feature 26454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689623 of field osm_id of feature 26455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689629 of field osm_id of feature 26456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689634 of field osm_id of feature 26457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476689637 of field osm_id of feature 26458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692294 of field osm_id of feature 26459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692295 of field osm_id of feature 26460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692296 of field osm_id of feature 26461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692297 of field osm_id of feature 26462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692298 of field osm_id of feature 26463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692299 of field osm_id of feature 26464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692300 of field osm_id of feature 26465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692301 of field osm_id of feature 26466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476692302 of field osm_id of feature 26467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476693038 of field osm_id of feature 26468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476693039 of field osm_id of feature 26469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695686 of field osm_id of feature 26470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695687 of field osm_id of feature 26471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695689 of field osm_id of feature 26472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695690 of field osm_id of feature 26473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695693 of field osm_id of feature 26474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695956 of field osm_id of feature 26475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695958 of field osm_id of feature 26476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695959 of field osm_id of feature 26477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695960 of field osm_id of feature 26478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695961 of field osm_id of feature 26479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695962 of field osm_id of feature 26480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695963 of field osm_id of feature 26481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476695964 of field osm_id of feature 26482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476697467 of field osm_id of feature 26483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476697468 of field osm_id of feature 26484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476697469 of field osm_id of feature 26485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476699683 of field osm_id of feature 26486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476699684 of field osm_id of feature 26487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476699685 of field osm_id of feature 26488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476699686 of field osm_id of feature 26489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476699687 of field osm_id of feature 26490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476701055 of field osm_id of feature 26491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476701056 of field osm_id of feature 26492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476702045 of field osm_id of feature 26493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476702046 of field osm_id of feature 26494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476702047 of field osm_id of feature 26495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476702048 of field osm_id of feature 26496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476703992 of field osm_id of feature 26497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476703993 of field osm_id of feature 26498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476703994 of field osm_id of feature 26499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476703995 of field osm_id of feature 26500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705417 of field osm_id of feature 26501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705421 of field osm_id of feature 26502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705424 of field osm_id of feature 26503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705427 of field osm_id of feature 26504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705430 of field osm_id of feature 26505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476705431 of field osm_id of feature 26506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476708349 of field osm_id of feature 26507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476708350 of field osm_id of feature 26508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476708351 of field osm_id of feature 26509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476708352 of field osm_id of feature 26510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710813 of field osm_id of feature 26511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710815 of field osm_id of feature 26512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710818 of field osm_id of feature 26513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710821 of field osm_id of feature 26514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710823 of field osm_id of feature 26515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476710826 of field osm_id of feature 26516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476712728 of field osm_id of feature 26517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476712729 of field osm_id of feature 26518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476714797 of field osm_id of feature 26519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476716878 of field osm_id of feature 26520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476716879 of field osm_id of feature 26521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476716880 of field osm_id of feature 26522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719987 of field osm_id of feature 26523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719988 of field osm_id of feature 26524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719989 of field osm_id of feature 26525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719990 of field osm_id of feature 26526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719991 of field osm_id of feature 26527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719992 of field osm_id of feature 26528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476719992 of field osm_id of feature 26529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476720121 of field osm_id of feature 26530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476720122 of field osm_id of feature 26531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476720123 of field osm_id of feature 26532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476720124 of field osm_id of feature 26533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476720125 of field osm_id of feature 26534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728836 of field osm_id of feature 26535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728837 of field osm_id of feature 26536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728840 of field osm_id of feature 26537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728841 of field osm_id of feature 26538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728842 of field osm_id of feature 26539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476728843 of field osm_id of feature 26540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476740090 of field osm_id of feature 26541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476740091 of field osm_id of feature 26542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476740092 of field osm_id of feature 26543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476749131 of field osm_id of feature 26544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476749133 of field osm_id of feature 26545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476749135 of field osm_id of feature 26546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476751674 of field osm_id of feature 26547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476751675 of field osm_id of feature 26548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476751676 of field osm_id of feature 26549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476752807 of field osm_id of feature 26550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476752808 of field osm_id of feature 26551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753162 of field osm_id of feature 26552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753163 of field osm_id of feature 26553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753165 of field osm_id of feature 26554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753166 of field osm_id of feature 26555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753167 of field osm_id of feature 26556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753239 of field osm_id of feature 26557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753240 of field osm_id of feature 26558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753241 of field osm_id of feature 26559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753242 of field osm_id of feature 26560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753243 of field osm_id of feature 26561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753245 of field osm_id of feature 26562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753246 of field osm_id of feature 26563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753246 of field osm_id of feature 26564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753247 of field osm_id of feature 26565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753247 of field osm_id of feature 26566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753248 of field osm_id of feature 26567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476753595 of field osm_id of feature 26568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755130 of field osm_id of feature 26569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755131 of field osm_id of feature 26570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755132 of field osm_id of feature 26571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755133 of field osm_id of feature 26572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755134 of field osm_id of feature 26573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755135 of field osm_id of feature 26574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755136 of field osm_id of feature 26575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755137 of field osm_id of feature 26576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755513 of field osm_id of feature 26577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755520 of field osm_id of feature 26578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755520 of field osm_id of feature 26579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755525 of field osm_id of feature 26580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755530 of field osm_id of feature 26581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476755530 of field osm_id of feature 26582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476758103 of field osm_id of feature 26583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476758103 of field osm_id of feature 26584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476758104 of field osm_id of feature 26585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476759396 of field osm_id of feature 26586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476759397 of field osm_id of feature 26587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476759398 of field osm_id of feature 26588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476871421 of field osm_id of feature 26589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476962379 of field osm_id of feature 26590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476962382 of field osm_id of feature 26591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476973643 of field osm_id of feature 26592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476973644 of field osm_id of feature 26593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476973646 of field osm_id of feature 26594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476973647 of field osm_id of feature 26595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476973648 of field osm_id of feature 26596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476980002 of field osm_id of feature 26597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476983250 of field osm_id of feature 26598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476983251 of field osm_id of feature 26599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986390 of field osm_id of feature 26600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986391 of field osm_id of feature 26601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986392 of field osm_id of feature 26602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986393 of field osm_id of feature 26603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986397 of field osm_id of feature 26604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476986397 of field osm_id of feature 26605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476988736 of field osm_id of feature 26606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476989632 of field osm_id of feature 26607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476989633 of field osm_id of feature 26608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476989634 of field osm_id of feature 26609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476989772 of field osm_id of feature 26610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 476989773 of field osm_id of feature 26611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025177 of field osm_id of feature 26612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025177 of field osm_id of feature 26613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025178 of field osm_id of feature 26614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025179 of field osm_id of feature 26615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025180 of field osm_id of feature 26616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477025181 of field osm_id of feature 26617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026782 of field osm_id of feature 26618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026783 of field osm_id of feature 26619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026784 of field osm_id of feature 26620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026785 of field osm_id of feature 26621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026786 of field osm_id of feature 26622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026787 of field osm_id of feature 26623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477026788 of field osm_id of feature 26624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477162101 of field osm_id of feature 26625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477162101 of field osm_id of feature 26626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517477 of field osm_id of feature 26627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517478 of field osm_id of feature 26628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517479 of field osm_id of feature 26629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517480 of field osm_id of feature 26630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517481 of field osm_id of feature 26631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477517482 of field osm_id of feature 26632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477518309 of field osm_id of feature 26633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477518310 of field osm_id of feature 26634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477518311 of field osm_id of feature 26635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477518312 of field osm_id of feature 26636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477518313 of field osm_id of feature 26637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477540212 of field osm_id of feature 26638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477540219 of field osm_id of feature 26639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477540220 of field osm_id of feature 26640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477540220 of field osm_id of feature 26641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543343 of field osm_id of feature 26642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543344 of field osm_id of feature 26643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543344 of field osm_id of feature 26644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543345 of field osm_id of feature 26645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543348 of field osm_id of feature 26646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543349 of field osm_id of feature 26647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543350 of field osm_id of feature 26648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543350 of field osm_id of feature 26649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543351 of field osm_id of feature 26650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477543352 of field osm_id of feature 26651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477544732 of field osm_id of feature 26652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477555100 of field osm_id of feature 26653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477555101 of field osm_id of feature 26654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477555102 of field osm_id of feature 26655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477555103 of field osm_id of feature 26656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477556253 of field osm_id of feature 26657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477556261 of field osm_id of feature 26658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477557467 of field osm_id of feature 26659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477557468 of field osm_id of feature 26660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477557469 of field osm_id of feature 26661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477557470 of field osm_id of feature 26662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477557471 of field osm_id of feature 26663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477560998 of field osm_id of feature 26664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477561000 of field osm_id of feature 26665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572438 of field osm_id of feature 26666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572439 of field osm_id of feature 26667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572440 of field osm_id of feature 26668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572441 of field osm_id of feature 26669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572442 of field osm_id of feature 26670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477572443 of field osm_id of feature 26671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574133 of field osm_id of feature 26672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574134 of field osm_id of feature 26673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574135 of field osm_id of feature 26674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574136 of field osm_id of feature 26675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574137 of field osm_id of feature 26676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574138 of field osm_id of feature 26677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477574139 of field osm_id of feature 26678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477575422 of field osm_id of feature 26679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623490 of field osm_id of feature 26680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623491 of field osm_id of feature 26681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623495 of field osm_id of feature 26682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623496 of field osm_id of feature 26683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623502 of field osm_id of feature 26684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623503 of field osm_id of feature 26685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623504 of field osm_id of feature 26686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623505 of field osm_id of feature 26687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623506 of field osm_id of feature 26688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623507 of field osm_id of feature 26689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623508 of field osm_id of feature 26690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623509 of field osm_id of feature 26691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623510 of field osm_id of feature 26692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477623511 of field osm_id of feature 26693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477637991 of field osm_id of feature 26694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477637992 of field osm_id of feature 26695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477637994 of field osm_id of feature 26696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477637997 of field osm_id of feature 26697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477698612 of field osm_id of feature 26698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477699626 of field osm_id of feature 26699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477699627 of field osm_id of feature 26700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477699628 of field osm_id of feature 26701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477709358 of field osm_id of feature 26702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477711014 of field osm_id of feature 26703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477711015 of field osm_id of feature 26704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477711619 of field osm_id of feature 26705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477716399 of field osm_id of feature 26706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772941 of field osm_id of feature 26707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772946 of field osm_id of feature 26708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772952 of field osm_id of feature 26709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772957 of field osm_id of feature 26710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772963 of field osm_id of feature 26711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772970 of field osm_id of feature 26712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772977 of field osm_id of feature 26713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772982 of field osm_id of feature 26714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772986 of field osm_id of feature 26715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772990 of field osm_id of feature 26716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477772995 of field osm_id of feature 26717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477773000 of field osm_id of feature 26718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477773273 of field osm_id of feature 26719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477775747 of field osm_id of feature 26720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477776451 of field osm_id of feature 26721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477776452 of field osm_id of feature 26722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477776453 of field osm_id of feature 26723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477776454 of field osm_id of feature 26724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778221 of field osm_id of feature 26725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778222 of field osm_id of feature 26726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778223 of field osm_id of feature 26727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778224 of field osm_id of feature 26728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778225 of field osm_id of feature 26729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778226 of field osm_id of feature 26730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778227 of field osm_id of feature 26731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778228 of field osm_id of feature 26732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778229 of field osm_id of feature 26733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778230 of field osm_id of feature 26734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778231 of field osm_id of feature 26735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778879 of field osm_id of feature 26736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778880 of field osm_id of feature 26737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477778881 of field osm_id of feature 26738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477779407 of field osm_id of feature 26739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477779408 of field osm_id of feature 26740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477779409 of field osm_id of feature 26741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477779410 of field osm_id of feature 26742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477782175 of field osm_id of feature 26743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477782176 of field osm_id of feature 26744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477782178 of field osm_id of feature 26745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785962 of field osm_id of feature 26746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785963 of field osm_id of feature 26747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785964 of field osm_id of feature 26748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785965 of field osm_id of feature 26749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785967 of field osm_id of feature 26750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785968 of field osm_id of feature 26751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785969 of field osm_id of feature 26752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477785971 of field osm_id of feature 26753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477791263 of field osm_id of feature 26754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477792526 of field osm_id of feature 26755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477792527 of field osm_id of feature 26756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477792528 of field osm_id of feature 26757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477794303 of field osm_id of feature 26758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477794304 of field osm_id of feature 26759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796380 of field osm_id of feature 26760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796381 of field osm_id of feature 26761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796382 of field osm_id of feature 26762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796383 of field osm_id of feature 26763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796384 of field osm_id of feature 26764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796385 of field osm_id of feature 26765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796386 of field osm_id of feature 26766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796387 of field osm_id of feature 26767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796388 of field osm_id of feature 26768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796388 of field osm_id of feature 26769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796389 of field osm_id of feature 26770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796390 of field osm_id of feature 26771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796391 of field osm_id of feature 26772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477796392 of field osm_id of feature 26773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477797907 of field osm_id of feature 26774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477797908 of field osm_id of feature 26775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477797908 of field osm_id of feature 26776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477797909 of field osm_id of feature 26777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477797910 of field osm_id of feature 26778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477811639 of field osm_id of feature 26779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477811640 of field osm_id of feature 26780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477811641 of field osm_id of feature 26781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477811642 of field osm_id of feature 26782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477894010 of field osm_id of feature 26783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477894011 of field osm_id of feature 26784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477900834 of field osm_id of feature 26785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477900877 of field osm_id of feature 26786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477902111 of field osm_id of feature 26787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477904006 of field osm_id of feature 26788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477904508 of field osm_id of feature 26789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477904602 of field osm_id of feature 26790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477905881 of field osm_id of feature 26791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477905883 of field osm_id of feature 26792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477907932 of field osm_id of feature 26793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477907933 of field osm_id of feature 26794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477907934 of field osm_id of feature 26795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477907935 of field osm_id of feature 26796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908188 of field osm_id of feature 26797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908189 of field osm_id of feature 26798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908190 of field osm_id of feature 26799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908232 of field osm_id of feature 26800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908233 of field osm_id of feature 26801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908234 of field osm_id of feature 26802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908235 of field osm_id of feature 26803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908236 of field osm_id of feature 26804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477908704 of field osm_id of feature 26805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909666 of field osm_id of feature 26806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909667 of field osm_id of feature 26807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909668 of field osm_id of feature 26808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909669 of field osm_id of feature 26809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909672 of field osm_id of feature 26810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909673 of field osm_id of feature 26811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909674 of field osm_id of feature 26812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477909675 of field osm_id of feature 26813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477910765 of field osm_id of feature 26814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477910766 of field osm_id of feature 26815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477910767 of field osm_id of feature 26816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477910768 of field osm_id of feature 26817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477910769 of field osm_id of feature 26818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477911479 of field osm_id of feature 26819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477911480 of field osm_id of feature 26820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913748 of field osm_id of feature 26821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913749 of field osm_id of feature 26822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913750 of field osm_id of feature 26823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913751 of field osm_id of feature 26824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913752 of field osm_id of feature 26825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913753 of field osm_id of feature 26826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913754 of field osm_id of feature 26827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913756 of field osm_id of feature 26828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913756 of field osm_id of feature 26829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913757 of field osm_id of feature 26830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913758 of field osm_id of feature 26831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913759 of field osm_id of feature 26832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913760 of field osm_id of feature 26833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913761 of field osm_id of feature 26834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477913763 of field osm_id of feature 26835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477914957 of field osm_id of feature 26836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477914958 of field osm_id of feature 26837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477915454 of field osm_id of feature 26838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477915672 of field osm_id of feature 26839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477915673 of field osm_id of feature 26840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477915674 of field osm_id of feature 26841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477915675 of field osm_id of feature 26842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918046 of field osm_id of feature 26843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918914 of field osm_id of feature 26844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918915 of field osm_id of feature 26845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918916 of field osm_id of feature 26846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918917 of field osm_id of feature 26847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918918 of field osm_id of feature 26848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918919 of field osm_id of feature 26849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477918920 of field osm_id of feature 26850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919071 of field osm_id of feature 26851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919077 of field osm_id of feature 26852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919079 of field osm_id of feature 26853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919080 of field osm_id of feature 26854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919081 of field osm_id of feature 26855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919593 of field osm_id of feature 26856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477919593 of field osm_id of feature 26857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477920705 of field osm_id of feature 26858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477920706 of field osm_id of feature 26859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923318 of field osm_id of feature 26860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923322 of field osm_id of feature 26861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923322 of field osm_id of feature 26862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923324 of field osm_id of feature 26863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923324 of field osm_id of feature 26864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923325 of field osm_id of feature 26865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923690 of field osm_id of feature 26866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923812 of field osm_id of feature 26867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923813 of field osm_id of feature 26868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477923814 of field osm_id of feature 26869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477924257 of field osm_id of feature 26870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477924654 of field osm_id of feature 26871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477924655 of field osm_id of feature 26872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477924656 of field osm_id of feature 26873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477924657 of field osm_id of feature 26874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477925427 of field osm_id of feature 26875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477925428 of field osm_id of feature 26876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477925825 of field osm_id of feature 26877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477927489 of field osm_id of feature 26878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477928638 of field osm_id of feature 26879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477928665 of field osm_id of feature 26880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477928666 of field osm_id of feature 26881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477928668 of field osm_id of feature 26882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929007 of field osm_id of feature 26883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929008 of field osm_id of feature 26884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929009 of field osm_id of feature 26885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929009 of field osm_id of feature 26886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929010 of field osm_id of feature 26887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929011 of field osm_id of feature 26888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929013 of field osm_id of feature 26889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929014 of field osm_id of feature 26890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929015 of field osm_id of feature 26891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929016 of field osm_id of feature 26892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929017 of field osm_id of feature 26893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929017 of field osm_id of feature 26894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929138 of field osm_id of feature 26895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929139 of field osm_id of feature 26896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929140 of field osm_id of feature 26897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929141 of field osm_id of feature 26898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929142 of field osm_id of feature 26899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929391 of field osm_id of feature 26900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929394 of field osm_id of feature 26901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929395 of field osm_id of feature 26902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929554 of field osm_id of feature 26903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929555 of field osm_id of feature 26904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929556 of field osm_id of feature 26905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929885 of field osm_id of feature 26906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929886 of field osm_id of feature 26907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929887 of field osm_id of feature 26908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929888 of field osm_id of feature 26909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929889 of field osm_id of feature 26910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929891 of field osm_id of feature 26911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929893 of field osm_id of feature 26912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929960 of field osm_id of feature 26913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477929961 of field osm_id of feature 26914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930084 of field osm_id of feature 26915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930085 of field osm_id of feature 26916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930086 of field osm_id of feature 26917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930087 of field osm_id of feature 26918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930088 of field osm_id of feature 26919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930090 of field osm_id of feature 26920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930091 of field osm_id of feature 26921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930333 of field osm_id of feature 26922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930334 of field osm_id of feature 26923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930335 of field osm_id of feature 26924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930336 of field osm_id of feature 26925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930416 of field osm_id of feature 26926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930417 of field osm_id of feature 26927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930994 of field osm_id of feature 26928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477930995 of field osm_id of feature 26929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477931568 of field osm_id of feature 26930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477931746 of field osm_id of feature 26931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477931747 of field osm_id of feature 26932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477931748 of field osm_id of feature 26933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932025 of field osm_id of feature 26934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932026 of field osm_id of feature 26935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932027 of field osm_id of feature 26936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932141 of field osm_id of feature 26937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932142 of field osm_id of feature 26938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932143 of field osm_id of feature 26939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932590 of field osm_id of feature 26940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932591 of field osm_id of feature 26941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932738 of field osm_id of feature 26942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932883 of field osm_id of feature 26943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932884 of field osm_id of feature 26944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932885 of field osm_id of feature 26945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477932886 of field osm_id of feature 26946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933139 of field osm_id of feature 26947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933139 of field osm_id of feature 26948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933140 of field osm_id of feature 26949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933140 of field osm_id of feature 26950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933141 of field osm_id of feature 26951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477933142 of field osm_id of feature 26952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477934226 of field osm_id of feature 26953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477935107 of field osm_id of feature 26954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477935704 of field osm_id of feature 26955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477935705 of field osm_id of feature 26956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477937035 of field osm_id of feature 26957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477937038 of field osm_id of feature 26958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477937891 of field osm_id of feature 26959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477939420 of field osm_id of feature 26960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477939593 of field osm_id of feature 26961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477939597 of field osm_id of feature 26962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477939945 of field osm_id of feature 26963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940655 of field osm_id of feature 26964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940657 of field osm_id of feature 26965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940659 of field osm_id of feature 26966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940769 of field osm_id of feature 26967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940770 of field osm_id of feature 26968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940771 of field osm_id of feature 26969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940772 of field osm_id of feature 26970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940773 of field osm_id of feature 26971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940774 of field osm_id of feature 26972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940775 of field osm_id of feature 26973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940776 of field osm_id of feature 26974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477940777 of field osm_id of feature 26975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477942996 of field osm_id of feature 26976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477943004 of field osm_id of feature 26977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948130 of field osm_id of feature 26978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948131 of field osm_id of feature 26979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948132 of field osm_id of feature 26980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948133 of field osm_id of feature 26981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948134 of field osm_id of feature 26982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948135 of field osm_id of feature 26983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948136 of field osm_id of feature 26984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948137 of field osm_id of feature 26985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948138 of field osm_id of feature 26986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948139 of field osm_id of feature 26987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948140 of field osm_id of feature 26988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948141 of field osm_id of feature 26989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477948700 of field osm_id of feature 26990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949185 of field osm_id of feature 26991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949186 of field osm_id of feature 26992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949188 of field osm_id of feature 26993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949268 of field osm_id of feature 26994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949269 of field osm_id of feature 26995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949270 of field osm_id of feature 26996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949271 of field osm_id of feature 26997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949272 of field osm_id of feature 26998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949274 of field osm_id of feature 26999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949275 of field osm_id of feature 27000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949443 of field osm_id of feature 27001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949444 of field osm_id of feature 27002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477949445 of field osm_id of feature 27003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477950007 of field osm_id of feature 27004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477950008 of field osm_id of feature 27005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477950011 of field osm_id of feature 27006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477950012 of field osm_id of feature 27007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477951173 of field osm_id of feature 27008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477951173 of field osm_id of feature 27009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477951174 of field osm_id of feature 27010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477951734 of field osm_id of feature 27011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952788 of field osm_id of feature 27012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952789 of field osm_id of feature 27013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952790 of field osm_id of feature 27014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952791 of field osm_id of feature 27015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952809 of field osm_id of feature 27016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952810 of field osm_id of feature 27017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952811 of field osm_id of feature 27018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952812 of field osm_id of feature 27019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952813 of field osm_id of feature 27020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952814 of field osm_id of feature 27021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952815 of field osm_id of feature 27022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952816 of field osm_id of feature 27023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477952817 of field osm_id of feature 27024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953225 of field osm_id of feature 27025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953227 of field osm_id of feature 27026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953228 of field osm_id of feature 27027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953229 of field osm_id of feature 27028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953230 of field osm_id of feature 27029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953236 of field osm_id of feature 27030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953239 of field osm_id of feature 27031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953242 of field osm_id of feature 27032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953248 of field osm_id of feature 27033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953255 of field osm_id of feature 27034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953258 of field osm_id of feature 27035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953827 of field osm_id of feature 27036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477953828 of field osm_id of feature 27037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954313 of field osm_id of feature 27038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954315 of field osm_id of feature 27039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954316 of field osm_id of feature 27040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954317 of field osm_id of feature 27041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954318 of field osm_id of feature 27042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954319 of field osm_id of feature 27043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954320 of field osm_id of feature 27044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954323 of field osm_id of feature 27045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954428 of field osm_id of feature 27046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954429 of field osm_id of feature 27047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954430 of field osm_id of feature 27048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954431 of field osm_id of feature 27049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954432 of field osm_id of feature 27050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954433 of field osm_id of feature 27051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954626 of field osm_id of feature 27052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954628 of field osm_id of feature 27053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477954629 of field osm_id of feature 27054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477955761 of field osm_id of feature 27055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477955762 of field osm_id of feature 27056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957122 of field osm_id of feature 27057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957125 of field osm_id of feature 27058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957126 of field osm_id of feature 27059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957447 of field osm_id of feature 27060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957448 of field osm_id of feature 27061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957449 of field osm_id of feature 27062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957450 of field osm_id of feature 27063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957451 of field osm_id of feature 27064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957452 of field osm_id of feature 27065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957453 of field osm_id of feature 27066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957454 of field osm_id of feature 27067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957454 of field osm_id of feature 27068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957455 of field osm_id of feature 27069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957456 of field osm_id of feature 27070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957457 of field osm_id of feature 27071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477957458 of field osm_id of feature 27072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958058 of field osm_id of feature 27073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958186 of field osm_id of feature 27074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958187 of field osm_id of feature 27075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958351 of field osm_id of feature 27076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958805 of field osm_id of feature 27077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477958806 of field osm_id of feature 27078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477959353 of field osm_id of feature 27079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477959756 of field osm_id of feature 27080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477960406 of field osm_id of feature 27081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477960409 of field osm_id of feature 27082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477960868 of field osm_id of feature 27083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477960869 of field osm_id of feature 27084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477960870 of field osm_id of feature 27085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477961028 of field osm_id of feature 27086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477961055 of field osm_id of feature 27087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477961947 of field osm_id of feature 27088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477963480 of field osm_id of feature 27089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477963491 of field osm_id of feature 27090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477965364 of field osm_id of feature 27091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477965365 of field osm_id of feature 27092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477965757 of field osm_id of feature 27093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477965758 of field osm_id of feature 27094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477966130 of field osm_id of feature 27095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477966131 of field osm_id of feature 27096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477966132 of field osm_id of feature 27097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477966959 of field osm_id of feature 27098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477967038 of field osm_id of feature 27099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477967039 of field osm_id of feature 27100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477967040 of field osm_id of feature 27101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 477973143 of field osm_id of feature 27102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478106906 of field osm_id of feature 27103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478108378 of field osm_id of feature 27104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478110085 of field osm_id of feature 27105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478110086 of field osm_id of feature 27106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478110087 of field osm_id of feature 27107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478111455 of field osm_id of feature 27108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116169 of field osm_id of feature 27109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116170 of field osm_id of feature 27110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116171 of field osm_id of feature 27111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116172 of field osm_id of feature 27112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116454 of field osm_id of feature 27113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116455 of field osm_id of feature 27114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116456 of field osm_id of feature 27115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478116457 of field osm_id of feature 27116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478121216 of field osm_id of feature 27117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478121217 of field osm_id of feature 27118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478121218 of field osm_id of feature 27119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478121529 of field osm_id of feature 27120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478122409 of field osm_id of feature 27121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478122499 of field osm_id of feature 27122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478122500 of field osm_id of feature 27123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478122501 of field osm_id of feature 27124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478122502 of field osm_id of feature 27125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478123580 of field osm_id of feature 27126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478123581 of field osm_id of feature 27127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478123582 of field osm_id of feature 27128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124216 of field osm_id of feature 27129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124386 of field osm_id of feature 27130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124387 of field osm_id of feature 27131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124388 of field osm_id of feature 27132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124389 of field osm_id of feature 27133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124390 of field osm_id of feature 27134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124391 of field osm_id of feature 27135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124392 of field osm_id of feature 27136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478124393 of field osm_id of feature 27137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478125621 of field osm_id of feature 27138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478125622 of field osm_id of feature 27139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478125623 of field osm_id of feature 27140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478125624 of field osm_id of feature 27141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126342 of field osm_id of feature 27142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126343 of field osm_id of feature 27143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126344 of field osm_id of feature 27144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126345 of field osm_id of feature 27145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126346 of field osm_id of feature 27146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126347 of field osm_id of feature 27147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126347 of field osm_id of feature 27148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126348 of field osm_id of feature 27149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126348 of field osm_id of feature 27150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126349 of field osm_id of feature 27151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126497 of field osm_id of feature 27152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126498 of field osm_id of feature 27153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126499 of field osm_id of feature 27154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126500 of field osm_id of feature 27155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126501 of field osm_id of feature 27156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126502 of field osm_id of feature 27157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126503 of field osm_id of feature 27158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126504 of field osm_id of feature 27159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126978 of field osm_id of feature 27160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126979 of field osm_id of feature 27161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126980 of field osm_id of feature 27162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126981 of field osm_id of feature 27163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126982 of field osm_id of feature 27164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126983 of field osm_id of feature 27165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126984 of field osm_id of feature 27166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478126985 of field osm_id of feature 27167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478127209 of field osm_id of feature 27168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478127210 of field osm_id of feature 27169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478127211 of field osm_id of feature 27170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478127495 of field osm_id of feature 27171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478128201 of field osm_id of feature 27172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478129031 of field osm_id of feature 27173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478129034 of field osm_id of feature 27174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132387 of field osm_id of feature 27175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132958 of field osm_id of feature 27176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132959 of field osm_id of feature 27177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132960 of field osm_id of feature 27178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132961 of field osm_id of feature 27179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478132962 of field osm_id of feature 27180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478133932 of field osm_id of feature 27181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478133934 of field osm_id of feature 27182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478133935 of field osm_id of feature 27183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478133936 of field osm_id of feature 27184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478133990 of field osm_id of feature 27185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478134013 of field osm_id of feature 27186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478134388 of field osm_id of feature 27187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478134392 of field osm_id of feature 27188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478135705 of field osm_id of feature 27189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478135707 of field osm_id of feature 27190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478136023 of field osm_id of feature 27191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478137326 of field osm_id of feature 27192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478137327 of field osm_id of feature 27193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478137617 of field osm_id of feature 27194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478137617 of field osm_id of feature 27195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478137795 of field osm_id of feature 27196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138568 of field osm_id of feature 27197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138570 of field osm_id of feature 27198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138572 of field osm_id of feature 27199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138573 of field osm_id of feature 27200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138575 of field osm_id of feature 27201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138578 of field osm_id of feature 27202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478138816 of field osm_id of feature 27203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478141513 of field osm_id of feature 27204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142476 of field osm_id of feature 27205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142477 of field osm_id of feature 27206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142478 of field osm_id of feature 27207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142479 of field osm_id of feature 27208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142480 of field osm_id of feature 27209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478142481 of field osm_id of feature 27210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143344 of field osm_id of feature 27211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143345 of field osm_id of feature 27212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143346 of field osm_id of feature 27213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143347 of field osm_id of feature 27214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143348 of field osm_id of feature 27215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143349 of field osm_id of feature 27216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478143350 of field osm_id of feature 27217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478146071 of field osm_id of feature 27218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478146072 of field osm_id of feature 27219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147969 of field osm_id of feature 27220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147970 of field osm_id of feature 27221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147971 of field osm_id of feature 27222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147972 of field osm_id of feature 27223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147973 of field osm_id of feature 27224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147974 of field osm_id of feature 27225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478147975 of field osm_id of feature 27226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478148396 of field osm_id of feature 27227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478148601 of field osm_id of feature 27228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478148684 of field osm_id of feature 27229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478148685 of field osm_id of feature 27230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478150186 of field osm_id of feature 27231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478150187 of field osm_id of feature 27232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151000 of field osm_id of feature 27233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151001 of field osm_id of feature 27234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151002 of field osm_id of feature 27235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151003 of field osm_id of feature 27236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151004 of field osm_id of feature 27237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151005 of field osm_id of feature 27238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151006 of field osm_id of feature 27239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151007 of field osm_id of feature 27240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151008 of field osm_id of feature 27241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151009 of field osm_id of feature 27242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151010 of field osm_id of feature 27243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151011 of field osm_id of feature 27244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478151928 of field osm_id of feature 27245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478152046 of field osm_id of feature 27246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478152047 of field osm_id of feature 27247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478152048 of field osm_id of feature 27248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478152049 of field osm_id of feature 27249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478152050 of field osm_id of feature 27250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478155651 of field osm_id of feature 27251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478155652 of field osm_id of feature 27252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478155653 of field osm_id of feature 27253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478155654 of field osm_id of feature 27254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478157206 of field osm_id of feature 27255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478157206 of field osm_id of feature 27256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478157215 of field osm_id of feature 27257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478157217 of field osm_id of feature 27258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158657 of field osm_id of feature 27259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158658 of field osm_id of feature 27260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158659 of field osm_id of feature 27261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158660 of field osm_id of feature 27262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158660 of field osm_id of feature 27263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158661 of field osm_id of feature 27264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158662 of field osm_id of feature 27265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158663 of field osm_id of feature 27266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158692 of field osm_id of feature 27267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158693 of field osm_id of feature 27268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158694 of field osm_id of feature 27269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158762 of field osm_id of feature 27270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158763 of field osm_id of feature 27271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158764 of field osm_id of feature 27272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158765 of field osm_id of feature 27273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158766 of field osm_id of feature 27274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158767 of field osm_id of feature 27275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158768 of field osm_id of feature 27276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478158769 of field osm_id of feature 27277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478159357 of field osm_id of feature 27278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478159358 of field osm_id of feature 27279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478159359 of field osm_id of feature 27280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478159589 of field osm_id of feature 27281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478159590 of field osm_id of feature 27282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160403 of field osm_id of feature 27283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160404 of field osm_id of feature 27284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160405 of field osm_id of feature 27285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160406 of field osm_id of feature 27286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160524 of field osm_id of feature 27287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160757 of field osm_id of feature 27288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160758 of field osm_id of feature 27289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160759 of field osm_id of feature 27290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160922 of field osm_id of feature 27291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160923 of field osm_id of feature 27292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160924 of field osm_id of feature 27293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160925 of field osm_id of feature 27294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478160926 of field osm_id of feature 27295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161197 of field osm_id of feature 27296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161198 of field osm_id of feature 27297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161199 of field osm_id of feature 27298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161200 of field osm_id of feature 27299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161201 of field osm_id of feature 27300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161666 of field osm_id of feature 27301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478161669 of field osm_id of feature 27302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162366 of field osm_id of feature 27303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162367 of field osm_id of feature 27304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162368 of field osm_id of feature 27305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162369 of field osm_id of feature 27306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162370 of field osm_id of feature 27307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162371 of field osm_id of feature 27308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162372 of field osm_id of feature 27309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162373 of field osm_id of feature 27310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162374 of field osm_id of feature 27311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162426 of field osm_id of feature 27312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162577 of field osm_id of feature 27313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478162578 of field osm_id of feature 27314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164185 of field osm_id of feature 27315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164186 of field osm_id of feature 27316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164187 of field osm_id of feature 27317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164188 of field osm_id of feature 27318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164268 of field osm_id of feature 27319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164268 of field osm_id of feature 27320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164269 of field osm_id of feature 27321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478164981 of field osm_id of feature 27322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165026 of field osm_id of feature 27323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165027 of field osm_id of feature 27324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165028 of field osm_id of feature 27325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165029 of field osm_id of feature 27326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165030 of field osm_id of feature 27327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165101 of field osm_id of feature 27328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165104 of field osm_id of feature 27329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165107 of field osm_id of feature 27330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165109 of field osm_id of feature 27331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165112 of field osm_id of feature 27332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165115 of field osm_id of feature 27333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478165118 of field osm_id of feature 27334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478167911 of field osm_id of feature 27335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478167912 of field osm_id of feature 27336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478167913 of field osm_id of feature 27337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478167914 of field osm_id of feature 27338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478167915 of field osm_id of feature 27339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478168112 of field osm_id of feature 27340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478168113 of field osm_id of feature 27341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478168114 of field osm_id of feature 27342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478168115 of field osm_id of feature 27343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478168116 of field osm_id of feature 27344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478170131 of field osm_id of feature 27345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171085 of field osm_id of feature 27346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171086 of field osm_id of feature 27347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171087 of field osm_id of feature 27348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171088 of field osm_id of feature 27349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171748 of field osm_id of feature 27350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171749 of field osm_id of feature 27351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171750 of field osm_id of feature 27352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171751 of field osm_id of feature 27353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171752 of field osm_id of feature 27354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171753 of field osm_id of feature 27355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171754 of field osm_id of feature 27356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171755 of field osm_id of feature 27357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171756 of field osm_id of feature 27358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171757 of field osm_id of feature 27359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478171758 of field osm_id of feature 27360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173915 of field osm_id of feature 27361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173916 of field osm_id of feature 27362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173917 of field osm_id of feature 27363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173918 of field osm_id of feature 27364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173919 of field osm_id of feature 27365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173920 of field osm_id of feature 27366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173998 of field osm_id of feature 27367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478173999 of field osm_id of feature 27368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174000 of field osm_id of feature 27369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174001 of field osm_id of feature 27370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174002 of field osm_id of feature 27371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174018 of field osm_id of feature 27372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174368 of field osm_id of feature 27373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174369 of field osm_id of feature 27374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174370 of field osm_id of feature 27375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174371 of field osm_id of feature 27376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478174372 of field osm_id of feature 27377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175607 of field osm_id of feature 27378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175610 of field osm_id of feature 27379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175613 of field osm_id of feature 27380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175615 of field osm_id of feature 27381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175618 of field osm_id of feature 27382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175691 of field osm_id of feature 27383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175692 of field osm_id of feature 27384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478175693 of field osm_id of feature 27385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176128 of field osm_id of feature 27386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176129 of field osm_id of feature 27387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176130 of field osm_id of feature 27388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176131 of field osm_id of feature 27389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176132 of field osm_id of feature 27390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176271 of field osm_id of feature 27391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176272 of field osm_id of feature 27392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176273 of field osm_id of feature 27393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176274 of field osm_id of feature 27394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176276 of field osm_id of feature 27395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176978 of field osm_id of feature 27396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176978 of field osm_id of feature 27397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176979 of field osm_id of feature 27398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176980 of field osm_id of feature 27399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176981 of field osm_id of feature 27400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176982 of field osm_id of feature 27401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176983 of field osm_id of feature 27402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176983 of field osm_id of feature 27403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176984 of field osm_id of feature 27404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176985 of field osm_id of feature 27405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478176986 of field osm_id of feature 27406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478177021 of field osm_id of feature 27407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478177022 of field osm_id of feature 27408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478177023 of field osm_id of feature 27409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478177024 of field osm_id of feature 27410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478177025 of field osm_id of feature 27411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478285515 of field osm_id of feature 27412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478285516 of field osm_id of feature 27413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478285517 of field osm_id of feature 27414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287543 of field osm_id of feature 27415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287544 of field osm_id of feature 27416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287545 of field osm_id of feature 27417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287546 of field osm_id of feature 27418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287547 of field osm_id of feature 27419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287548 of field osm_id of feature 27420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287549 of field osm_id of feature 27421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287550 of field osm_id of feature 27422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287551 of field osm_id of feature 27423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287552 of field osm_id of feature 27424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287552 of field osm_id of feature 27425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287553 of field osm_id of feature 27426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287554 of field osm_id of feature 27427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478287555 of field osm_id of feature 27428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289786 of field osm_id of feature 27429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289787 of field osm_id of feature 27430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289788 of field osm_id of feature 27431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289789 of field osm_id of feature 27432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289790 of field osm_id of feature 27433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289792 of field osm_id of feature 27434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289793 of field osm_id of feature 27435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478289794 of field osm_id of feature 27436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293973 of field osm_id of feature 27437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293974 of field osm_id of feature 27438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293975 of field osm_id of feature 27439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293976 of field osm_id of feature 27440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293977 of field osm_id of feature 27441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293978 of field osm_id of feature 27442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293979 of field osm_id of feature 27443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293980 of field osm_id of feature 27444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293980 of field osm_id of feature 27445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293981 of field osm_id of feature 27446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293982 of field osm_id of feature 27447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293983 of field osm_id of feature 27448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293984 of field osm_id of feature 27449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478293985 of field osm_id of feature 27450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294259 of field osm_id of feature 27451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294260 of field osm_id of feature 27452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294261 of field osm_id of feature 27453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294685 of field osm_id of feature 27454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294686 of field osm_id of feature 27455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478294687 of field osm_id of feature 27456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295449 of field osm_id of feature 27457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295450 of field osm_id of feature 27458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295451 of field osm_id of feature 27459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295452 of field osm_id of feature 27460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295453 of field osm_id of feature 27461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295454 of field osm_id of feature 27462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295455 of field osm_id of feature 27463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295456 of field osm_id of feature 27464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295473 of field osm_id of feature 27465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295474 of field osm_id of feature 27466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295475 of field osm_id of feature 27467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295476 of field osm_id of feature 27468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295477 of field osm_id of feature 27469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478295478 of field osm_id of feature 27470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296023 of field osm_id of feature 27471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296024 of field osm_id of feature 27472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296025 of field osm_id of feature 27473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296250 of field osm_id of feature 27474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296251 of field osm_id of feature 27475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296252 of field osm_id of feature 27476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296835 of field osm_id of feature 27477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296837 of field osm_id of feature 27478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478296838 of field osm_id of feature 27479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478297828 of field osm_id of feature 27480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478297829 of field osm_id of feature 27481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299263 of field osm_id of feature 27482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299264 of field osm_id of feature 27483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299265 of field osm_id of feature 27484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299267 of field osm_id of feature 27485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299268 of field osm_id of feature 27486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299269 of field osm_id of feature 27487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299270 of field osm_id of feature 27488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299271 of field osm_id of feature 27489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299272 of field osm_id of feature 27490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299273 of field osm_id of feature 27491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478299275 of field osm_id of feature 27492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302468 of field osm_id of feature 27493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302469 of field osm_id of feature 27494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302472 of field osm_id of feature 27495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302474 of field osm_id of feature 27496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302475 of field osm_id of feature 27497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302476 of field osm_id of feature 27498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302477 of field osm_id of feature 27499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302478 of field osm_id of feature 27500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478302479 of field osm_id of feature 27501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304023 of field osm_id of feature 27502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304024 of field osm_id of feature 27503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304025 of field osm_id of feature 27504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304026 of field osm_id of feature 27505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304027 of field osm_id of feature 27506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304028 of field osm_id of feature 27507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304029 of field osm_id of feature 27508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478304030 of field osm_id of feature 27509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478305860 of field osm_id of feature 27510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478305861 of field osm_id of feature 27511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478306694 of field osm_id of feature 27512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478308937 of field osm_id of feature 27513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478308938 of field osm_id of feature 27514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478312095 of field osm_id of feature 27515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478312097 of field osm_id of feature 27516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478312418 of field osm_id of feature 27517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478312419 of field osm_id of feature 27518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478313069 of field osm_id of feature 27519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478313074 of field osm_id of feature 27520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478313078 of field osm_id of feature 27521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478313239 of field osm_id of feature 27522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478313239 of field osm_id of feature 27523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478315939 of field osm_id of feature 27524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478318199 of field osm_id of feature 27525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478318200 of field osm_id of feature 27526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478319257 of field osm_id of feature 27527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320779 of field osm_id of feature 27528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320780 of field osm_id of feature 27529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320781 of field osm_id of feature 27530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320782 of field osm_id of feature 27531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320783 of field osm_id of feature 27532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320785 of field osm_id of feature 27533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478320786 of field osm_id of feature 27534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478321698 of field osm_id of feature 27535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478321701 of field osm_id of feature 27536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478321704 of field osm_id of feature 27537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478323241 of field osm_id of feature 27538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478323242 of field osm_id of feature 27539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478323242 of field osm_id of feature 27540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478323243 of field osm_id of feature 27541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324089 of field osm_id of feature 27542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324090 of field osm_id of feature 27543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324091 of field osm_id of feature 27544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324092 of field osm_id of feature 27545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324304 of field osm_id of feature 27546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478324305 of field osm_id of feature 27547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478325587 of field osm_id of feature 27548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326397 of field osm_id of feature 27549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326803 of field osm_id of feature 27550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326806 of field osm_id of feature 27551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326810 of field osm_id of feature 27552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326813 of field osm_id of feature 27553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326816 of field osm_id of feature 27554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326888 of field osm_id of feature 27555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478326889 of field osm_id of feature 27556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327198 of field osm_id of feature 27557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327199 of field osm_id of feature 27558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327199 of field osm_id of feature 27559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327200 of field osm_id of feature 27560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327201 of field osm_id of feature 27561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327602 of field osm_id of feature 27562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327606 of field osm_id of feature 27563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478327607 of field osm_id of feature 27564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328056 of field osm_id of feature 27565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328057 of field osm_id of feature 27566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328566 of field osm_id of feature 27567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328569 of field osm_id of feature 27568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328570 of field osm_id of feature 27569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328658 of field osm_id of feature 27570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328659 of field osm_id of feature 27571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328909 of field osm_id of feature 27572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478328910 of field osm_id of feature 27573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478329427 of field osm_id of feature 27574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478329428 of field osm_id of feature 27575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330055 of field osm_id of feature 27576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330056 of field osm_id of feature 27577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330057 of field osm_id of feature 27578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330059 of field osm_id of feature 27579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330265 of field osm_id of feature 27580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330265 of field osm_id of feature 27581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330266 of field osm_id of feature 27582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478330267 of field osm_id of feature 27583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478331347 of field osm_id of feature 27584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478331348 of field osm_id of feature 27585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332021 of field osm_id of feature 27586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332068 of field osm_id of feature 27587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332069 of field osm_id of feature 27588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332069 of field osm_id of feature 27589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332070 of field osm_id of feature 27590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332334 of field osm_id of feature 27591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332335 of field osm_id of feature 27592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332337 of field osm_id of feature 27593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332527 of field osm_id of feature 27594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332528 of field osm_id of feature 27595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332529 of field osm_id of feature 27596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332530 of field osm_id of feature 27597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332531 of field osm_id of feature 27598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332532 of field osm_id of feature 27599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478332533 of field osm_id of feature 27600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478333538 of field osm_id of feature 27601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478333539 of field osm_id of feature 27602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478333746 of field osm_id of feature 27603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478333747 of field osm_id of feature 27604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478336491 of field osm_id of feature 27605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478336492 of field osm_id of feature 27606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478336493 of field osm_id of feature 27607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478336694 of field osm_id of feature 27608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478336694 of field osm_id of feature 27609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337089 of field osm_id of feature 27610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337090 of field osm_id of feature 27611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337091 of field osm_id of feature 27612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337524 of field osm_id of feature 27613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337606 of field osm_id of feature 27614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337608 of field osm_id of feature 27615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478337853 of field osm_id of feature 27616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478338672 of field osm_id of feature 27617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478338673 of field osm_id of feature 27618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339113 of field osm_id of feature 27619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339471 of field osm_id of feature 27620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339552 of field osm_id of feature 27621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339553 of field osm_id of feature 27622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339554 of field osm_id of feature 27623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478339555 of field osm_id of feature 27624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340183 of field osm_id of feature 27625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340184 of field osm_id of feature 27626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340185 of field osm_id of feature 27627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340261 of field osm_id of feature 27628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340481 of field osm_id of feature 27629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340482 of field osm_id of feature 27630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340483 of field osm_id of feature 27631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478340484 of field osm_id of feature 27632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478341369 of field osm_id of feature 27633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478341373 of field osm_id of feature 27634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478344561 of field osm_id of feature 27635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478344737 of field osm_id of feature 27636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478344738 of field osm_id of feature 27637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478345210 of field osm_id of feature 27638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478345211 of field osm_id of feature 27639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478345212 of field osm_id of feature 27640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478346784 of field osm_id of feature 27641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478346785 of field osm_id of feature 27642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478346786 of field osm_id of feature 27643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347007 of field osm_id of feature 27644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347008 of field osm_id of feature 27645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347009 of field osm_id of feature 27646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347010 of field osm_id of feature 27647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347475 of field osm_id of feature 27648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478347476 of field osm_id of feature 27649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348161 of field osm_id of feature 27650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348162 of field osm_id of feature 27651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348164 of field osm_id of feature 27652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348165 of field osm_id of feature 27653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348166 of field osm_id of feature 27654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348167 of field osm_id of feature 27655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348168 of field osm_id of feature 27656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348169 of field osm_id of feature 27657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348170 of field osm_id of feature 27658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348171 of field osm_id of feature 27659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348172 of field osm_id of feature 27660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348173 of field osm_id of feature 27661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348174 of field osm_id of feature 27662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348925 of field osm_id of feature 27663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348962 of field osm_id of feature 27664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348963 of field osm_id of feature 27665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478348964 of field osm_id of feature 27666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349087 of field osm_id of feature 27667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349088 of field osm_id of feature 27668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349089 of field osm_id of feature 27669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349090 of field osm_id of feature 27670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349683 of field osm_id of feature 27671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349684 of field osm_id of feature 27672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349698 of field osm_id of feature 27673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478349699 of field osm_id of feature 27674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350593 of field osm_id of feature 27675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350594 of field osm_id of feature 27676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350595 of field osm_id of feature 27677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350596 of field osm_id of feature 27678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350597 of field osm_id of feature 27679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350598 of field osm_id of feature 27680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350599 of field osm_id of feature 27681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350600 of field osm_id of feature 27682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350925 of field osm_id of feature 27683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350926 of field osm_id of feature 27684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350927 of field osm_id of feature 27685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478350928 of field osm_id of feature 27686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478351729 of field osm_id of feature 27687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478351731 of field osm_id of feature 27688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478351732 of field osm_id of feature 27689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478354968 of field osm_id of feature 27690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478354971 of field osm_id of feature 27691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355024 of field osm_id of feature 27692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355025 of field osm_id of feature 27693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355026 of field osm_id of feature 27694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355027 of field osm_id of feature 27695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355028 of field osm_id of feature 27696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355029 of field osm_id of feature 27697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355030 of field osm_id of feature 27698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355096 of field osm_id of feature 27699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355666 of field osm_id of feature 27700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355667 of field osm_id of feature 27701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478355846 of field osm_id of feature 27702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478356515 of field osm_id of feature 27703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478356516 of field osm_id of feature 27704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478356517 of field osm_id of feature 27705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478356944 of field osm_id of feature 27706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357152 of field osm_id of feature 27707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357692 of field osm_id of feature 27708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357830 of field osm_id of feature 27709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357832 of field osm_id of feature 27710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357834 of field osm_id of feature 27711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357856 of field osm_id of feature 27712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357857 of field osm_id of feature 27713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357857 of field osm_id of feature 27714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357858 of field osm_id of feature 27715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357900 of field osm_id of feature 27716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357901 of field osm_id of feature 27717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357902 of field osm_id of feature 27718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357903 of field osm_id of feature 27719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478357904 of field osm_id of feature 27720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478358093 of field osm_id of feature 27721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478358094 of field osm_id of feature 27722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359148 of field osm_id of feature 27723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359149 of field osm_id of feature 27724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359150 of field osm_id of feature 27725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359151 of field osm_id of feature 27726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359763 of field osm_id of feature 27727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478359764 of field osm_id of feature 27728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478360024 of field osm_id of feature 27729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478360025 of field osm_id of feature 27730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478360843 of field osm_id of feature 27731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478361828 of field osm_id of feature 27732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478363222 of field osm_id of feature 27733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478363227 of field osm_id of feature 27734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478866528 of field osm_id of feature 27735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478868217 of field osm_id of feature 27736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478868218 of field osm_id of feature 27737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478869578 of field osm_id of feature 27738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478869579 of field osm_id of feature 27739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478869580 of field osm_id of feature 27740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478869581 of field osm_id of feature 27741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478871340 of field osm_id of feature 27742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478871341 of field osm_id of feature 27743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478871342 of field osm_id of feature 27744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875222 of field osm_id of feature 27745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875223 of field osm_id of feature 27746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875224 of field osm_id of feature 27747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875225 of field osm_id of feature 27748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875226 of field osm_id of feature 27749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478875227 of field osm_id of feature 27750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478876321 of field osm_id of feature 27751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478876906 of field osm_id of feature 27752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478876907 of field osm_id of feature 27753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478876908 of field osm_id of feature 27754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478878325 of field osm_id of feature 27755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478878640 of field osm_id of feature 27756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478879828 of field osm_id of feature 27757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478879829 of field osm_id of feature 27758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478879830 of field osm_id of feature 27759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478880105 of field osm_id of feature 27760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478880106 of field osm_id of feature 27761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478880107 of field osm_id of feature 27762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478880108 of field osm_id of feature 27763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478881603 of field osm_id of feature 27764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478881769 of field osm_id of feature 27765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478881770 of field osm_id of feature 27766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478882370 of field osm_id of feature 27767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478882371 of field osm_id of feature 27768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478882372 of field osm_id of feature 27769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478882373 of field osm_id of feature 27770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478882374 of field osm_id of feature 27771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883090 of field osm_id of feature 27772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883091 of field osm_id of feature 27773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883092 of field osm_id of feature 27774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883093 of field osm_id of feature 27775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883094 of field osm_id of feature 27776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883094 of field osm_id of feature 27777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883095 of field osm_id of feature 27778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883096 of field osm_id of feature 27779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883097 of field osm_id of feature 27780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883098 of field osm_id of feature 27781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478883099 of field osm_id of feature 27782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478884699 of field osm_id of feature 27783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478885080 of field osm_id of feature 27784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478885081 of field osm_id of feature 27785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478885082 of field osm_id of feature 27786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886835 of field osm_id of feature 27787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886836 of field osm_id of feature 27788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886837 of field osm_id of feature 27789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886838 of field osm_id of feature 27790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886839 of field osm_id of feature 27791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478886840 of field osm_id of feature 27792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478889311 of field osm_id of feature 27793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478890865 of field osm_id of feature 27794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478890866 of field osm_id of feature 27795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478891225 of field osm_id of feature 27796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478897431 of field osm_id of feature 27797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478907795 of field osm_id of feature 27798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478907798 of field osm_id of feature 27799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478925341 of field osm_id of feature 27800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478925342 of field osm_id of feature 27801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478925344 of field osm_id of feature 27802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478929280 of field osm_id of feature 27803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478929281 of field osm_id of feature 27804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478929282 of field osm_id of feature 27805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478929283 of field osm_id of feature 27806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930853 of field osm_id of feature 27807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930854 of field osm_id of feature 27808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930855 of field osm_id of feature 27809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930856 of field osm_id of feature 27810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930857 of field osm_id of feature 27811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930858 of field osm_id of feature 27812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478930899 of field osm_id of feature 27813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478934254 of field osm_id of feature 27814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478935404 of field osm_id of feature 27815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478935405 of field osm_id of feature 27816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478935405 of field osm_id of feature 27817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478939950 of field osm_id of feature 27818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478939951 of field osm_id of feature 27819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478939952 of field osm_id of feature 27820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478939953 of field osm_id of feature 27821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478939954 of field osm_id of feature 27822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478943255 of field osm_id of feature 27823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478943258 of field osm_id of feature 27824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478943260 of field osm_id of feature 27825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946174 of field osm_id of feature 27826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946175 of field osm_id of feature 27827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946295 of field osm_id of feature 27828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946296 of field osm_id of feature 27829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946297 of field osm_id of feature 27830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946298 of field osm_id of feature 27831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946299 of field osm_id of feature 27832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946300 of field osm_id of feature 27833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478946555 of field osm_id of feature 27834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947075 of field osm_id of feature 27835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947076 of field osm_id of feature 27836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947478 of field osm_id of feature 27837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947479 of field osm_id of feature 27838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947480 of field osm_id of feature 27839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947481 of field osm_id of feature 27840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478947482 of field osm_id of feature 27841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948195 of field osm_id of feature 27842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948196 of field osm_id of feature 27843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948197 of field osm_id of feature 27844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948198 of field osm_id of feature 27845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948724 of field osm_id of feature 27846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948725 of field osm_id of feature 27847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948726 of field osm_id of feature 27848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478948727 of field osm_id of feature 27849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478949921 of field osm_id of feature 27850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478949922 of field osm_id of feature 27851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478949923 of field osm_id of feature 27852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478949924 of field osm_id of feature 27853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478949969 of field osm_id of feature 27854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478950444 of field osm_id of feature 27855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478950447 of field osm_id of feature 27856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478950450 of field osm_id of feature 27857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478950454 of field osm_id of feature 27858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478951890 of field osm_id of feature 27859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478951892 of field osm_id of feature 27860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478951895 of field osm_id of feature 27861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478951896 of field osm_id of feature 27862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478952791 of field osm_id of feature 27863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478952792 of field osm_id of feature 27864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478952793 of field osm_id of feature 27865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478956437 of field osm_id of feature 27866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478956638 of field osm_id of feature 27867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478956859 of field osm_id of feature 27868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478957130 of field osm_id of feature 27869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478957131 of field osm_id of feature 27870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478957132 of field osm_id of feature 27871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478957133 of field osm_id of feature 27872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478957134 of field osm_id of feature 27873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478958927 of field osm_id of feature 27874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478958928 of field osm_id of feature 27875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478961891 of field osm_id of feature 27876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 478981293 of field osm_id of feature 27877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479072907 of field osm_id of feature 27878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078203 of field osm_id of feature 27879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078204 of field osm_id of feature 27880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078205 of field osm_id of feature 27881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078206 of field osm_id of feature 27882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078207 of field osm_id of feature 27883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078208 of field osm_id of feature 27884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078209 of field osm_id of feature 27885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479078210 of field osm_id of feature 27886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079352 of field osm_id of feature 27887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079353 of field osm_id of feature 27888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079570 of field osm_id of feature 27889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079571 of field osm_id of feature 27890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079572 of field osm_id of feature 27891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079573 of field osm_id of feature 27892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079574 of field osm_id of feature 27893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079575 of field osm_id of feature 27894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079576 of field osm_id of feature 27895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079577 of field osm_id of feature 27896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079578 of field osm_id of feature 27897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079783 of field osm_id of feature 27898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079785 of field osm_id of feature 27899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079789 of field osm_id of feature 27900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479079792 of field osm_id of feature 27901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080151 of field osm_id of feature 27902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080155 of field osm_id of feature 27903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080157 of field osm_id of feature 27904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080600 of field osm_id of feature 27905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080601 of field osm_id of feature 27906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080602 of field osm_id of feature 27907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479080603 of field osm_id of feature 27908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479082204 of field osm_id of feature 27909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479082932 of field osm_id of feature 27910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479082936 of field osm_id of feature 27911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479083903 of field osm_id of feature 27912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479083904 of field osm_id of feature 27913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479083905 of field osm_id of feature 27914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479083906 of field osm_id of feature 27915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086369 of field osm_id of feature 27916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086374 of field osm_id of feature 27917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086380 of field osm_id of feature 27918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086380 of field osm_id of feature 27919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086383 of field osm_id of feature 27920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086756 of field osm_id of feature 27921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086757 of field osm_id of feature 27922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086761 of field osm_id of feature 27923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479086763 of field osm_id of feature 27924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479087197 of field osm_id of feature 27925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479087198 of field osm_id of feature 27926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479088299 of field osm_id of feature 27927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479088300 of field osm_id of feature 27928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479091677 of field osm_id of feature 27929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479091678 of field osm_id of feature 27930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479091679 of field osm_id of feature 27931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479092180 of field osm_id of feature 27932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479092181 of field osm_id of feature 27933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479092182 of field osm_id of feature 27934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479092183 of field osm_id of feature 27935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479092184 of field osm_id of feature 27936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479112999 of field osm_id of feature 27937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113147 of field osm_id of feature 27938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113556 of field osm_id of feature 27939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113557 of field osm_id of feature 27940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113558 of field osm_id of feature 27941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113559 of field osm_id of feature 27942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113560 of field osm_id of feature 27943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113719 of field osm_id of feature 27944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113720 of field osm_id of feature 27945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113721 of field osm_id of feature 27946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113722 of field osm_id of feature 27947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113723 of field osm_id of feature 27948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113886 of field osm_id of feature 27949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113887 of field osm_id of feature 27950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113889 of field osm_id of feature 27951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113890 of field osm_id of feature 27952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479113891 of field osm_id of feature 27953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114005 of field osm_id of feature 27954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114006 of field osm_id of feature 27955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114007 of field osm_id of feature 27956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114010 of field osm_id of feature 27957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114016 of field osm_id of feature 27958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114021 of field osm_id of feature 27959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114025 of field osm_id of feature 27960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114027 of field osm_id of feature 27961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114390 of field osm_id of feature 27962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114391 of field osm_id of feature 27963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114392 of field osm_id of feature 27964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114393 of field osm_id of feature 27965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114893 of field osm_id of feature 27966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479114894 of field osm_id of feature 27967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479115440 of field osm_id of feature 27968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479115696 of field osm_id of feature 27969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116003 of field osm_id of feature 27970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116004 of field osm_id of feature 27971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116005 of field osm_id of feature 27972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116007 of field osm_id of feature 27973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116008 of field osm_id of feature 27974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116009 of field osm_id of feature 27975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116010 of field osm_id of feature 27976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116238 of field osm_id of feature 27977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116239 of field osm_id of feature 27978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116242 of field osm_id of feature 27979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116244 of field osm_id of feature 27980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116245 of field osm_id of feature 27981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479116246 of field osm_id of feature 27982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479117742 of field osm_id of feature 27983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479117745 of field osm_id of feature 27984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479117748 of field osm_id of feature 27985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479117754 of field osm_id of feature 27986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479118796 of field osm_id of feature 27987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479118797 of field osm_id of feature 27988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119303 of field osm_id of feature 27989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119305 of field osm_id of feature 27990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119308 of field osm_id of feature 27991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119312 of field osm_id of feature 27992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119315 of field osm_id of feature 27993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119317 of field osm_id of feature 27994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119320 of field osm_id of feature 27995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119323 of field osm_id of feature 27996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119436 of field osm_id of feature 27997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119437 of field osm_id of feature 27998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119438 of field osm_id of feature 27999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119439 of field osm_id of feature 28000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119440 of field osm_id of feature 28001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479119954 of field osm_id of feature 28002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479120235 of field osm_id of feature 28003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479120237 of field osm_id of feature 28004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479120238 of field osm_id of feature 28005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479120239 of field osm_id of feature 28006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479120533 of field osm_id of feature 28007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479122099 of field osm_id of feature 28008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123244 of field osm_id of feature 28009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123245 of field osm_id of feature 28010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123246 of field osm_id of feature 28011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123247 of field osm_id of feature 28012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123338 of field osm_id of feature 28013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123339 of field osm_id of feature 28014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479123340 of field osm_id of feature 28015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124335 of field osm_id of feature 28016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124336 of field osm_id of feature 28017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124338 of field osm_id of feature 28018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124339 of field osm_id of feature 28019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124340 of field osm_id of feature 28020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124340 of field osm_id of feature 28021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124341 of field osm_id of feature 28022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479124342 of field osm_id of feature 28023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125048 of field osm_id of feature 28024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125049 of field osm_id of feature 28025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125050 of field osm_id of feature 28026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125051 of field osm_id of feature 28027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125522 of field osm_id of feature 28028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125523 of field osm_id of feature 28029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125524 of field osm_id of feature 28030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125611 of field osm_id of feature 28031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125613 of field osm_id of feature 28032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479125614 of field osm_id of feature 28033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479126849 of field osm_id of feature 28034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479127290 of field osm_id of feature 28035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479127291 of field osm_id of feature 28036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479127292 of field osm_id of feature 28037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479131906 of field osm_id of feature 28038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479132841 of field osm_id of feature 28039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479132843 of field osm_id of feature 28040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479132844 of field osm_id of feature 28041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479136461 of field osm_id of feature 28042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479136472 of field osm_id of feature 28043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479136477 of field osm_id of feature 28044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139474 of field osm_id of feature 28045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139475 of field osm_id of feature 28046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139476 of field osm_id of feature 28047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139646 of field osm_id of feature 28048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139647 of field osm_id of feature 28049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139648 of field osm_id of feature 28050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479139664 of field osm_id of feature 28051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142250 of field osm_id of feature 28052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142251 of field osm_id of feature 28053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142252 of field osm_id of feature 28054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142253 of field osm_id of feature 28055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142254 of field osm_id of feature 28056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142255 of field osm_id of feature 28057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479142257 of field osm_id of feature 28058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147542 of field osm_id of feature 28059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147543 of field osm_id of feature 28060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147544 of field osm_id of feature 28061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147545 of field osm_id of feature 28062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147546 of field osm_id of feature 28063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147547 of field osm_id of feature 28064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147548 of field osm_id of feature 28065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479147549 of field osm_id of feature 28066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479148501 of field osm_id of feature 28067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479148503 of field osm_id of feature 28068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479148504 of field osm_id of feature 28069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479148505 of field osm_id of feature 28070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479148506 of field osm_id of feature 28071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479149244 of field osm_id of feature 28072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479149245 of field osm_id of feature 28073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479149246 of field osm_id of feature 28074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479149247 of field osm_id of feature 28075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479151994 of field osm_id of feature 28076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479151996 of field osm_id of feature 28077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479152363 of field osm_id of feature 28078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156089 of field osm_id of feature 28079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156090 of field osm_id of feature 28080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156092 of field osm_id of feature 28081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156095 of field osm_id of feature 28082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156096 of field osm_id of feature 28083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156099 of field osm_id of feature 28084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156100 of field osm_id of feature 28085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156607 of field osm_id of feature 28086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479156609 of field osm_id of feature 28087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157172 of field osm_id of feature 28088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157173 of field osm_id of feature 28089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157174 of field osm_id of feature 28090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157175 of field osm_id of feature 28091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157176 of field osm_id of feature 28092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157416 of field osm_id of feature 28093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157692 of field osm_id of feature 28094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157694 of field osm_id of feature 28095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157696 of field osm_id of feature 28096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157698 of field osm_id of feature 28097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479157700 of field osm_id of feature 28098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158085 of field osm_id of feature 28099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158086 of field osm_id of feature 28100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158087 of field osm_id of feature 28101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158088 of field osm_id of feature 28102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158089 of field osm_id of feature 28103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158090 of field osm_id of feature 28104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158092 of field osm_id of feature 28105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158717 of field osm_id of feature 28106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479158718 of field osm_id of feature 28107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479160385 of field osm_id of feature 28108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479160386 of field osm_id of feature 28109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162182 of field osm_id of feature 28110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162183 of field osm_id of feature 28111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162184 of field osm_id of feature 28112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162185 of field osm_id of feature 28113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162186 of field osm_id of feature 28114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162187 of field osm_id of feature 28115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479162188 of field osm_id of feature 28116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479164604 of field osm_id of feature 28117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479164639 of field osm_id of feature 28118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165041 of field osm_id of feature 28119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165042 of field osm_id of feature 28120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165043 of field osm_id of feature 28121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165044 of field osm_id of feature 28122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165045 of field osm_id of feature 28123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165046 of field osm_id of feature 28124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165047 of field osm_id of feature 28125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165048 of field osm_id of feature 28126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165183 of field osm_id of feature 28127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165184 of field osm_id of feature 28128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165185 of field osm_id of feature 28129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165186 of field osm_id of feature 28130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165187 of field osm_id of feature 28131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165188 of field osm_id of feature 28132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165189 of field osm_id of feature 28133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165190 of field osm_id of feature 28134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165266 of field osm_id of feature 28135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165267 of field osm_id of feature 28136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165268 of field osm_id of feature 28137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165269 of field osm_id of feature 28138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165278 of field osm_id of feature 28139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165279 of field osm_id of feature 28140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165280 of field osm_id of feature 28141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165435 of field osm_id of feature 28142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479165436 of field osm_id of feature 28143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166002 of field osm_id of feature 28144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166003 of field osm_id of feature 28145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166004 of field osm_id of feature 28146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166005 of field osm_id of feature 28147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166006 of field osm_id of feature 28148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166007 of field osm_id of feature 28149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166008 of field osm_id of feature 28150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166009 of field osm_id of feature 28151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166329 of field osm_id of feature 28152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166330 of field osm_id of feature 28153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166364 of field osm_id of feature 28154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166364 of field osm_id of feature 28155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166365 of field osm_id of feature 28156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166366 of field osm_id of feature 28157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166366 of field osm_id of feature 28158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166367 of field osm_id of feature 28159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166368 of field osm_id of feature 28160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166369 of field osm_id of feature 28161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166369 of field osm_id of feature 28162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166370 of field osm_id of feature 28163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166371 of field osm_id of feature 28164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166371 of field osm_id of feature 28165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166372 of field osm_id of feature 28166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166374 of field osm_id of feature 28167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166375 of field osm_id of feature 28168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166376 of field osm_id of feature 28169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166394 of field osm_id of feature 28170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166395 of field osm_id of feature 28171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166396 of field osm_id of feature 28172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166399 of field osm_id of feature 28173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166400 of field osm_id of feature 28174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166401 of field osm_id of feature 28175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166402 of field osm_id of feature 28176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166483 of field osm_id of feature 28177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166484 of field osm_id of feature 28178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166485 of field osm_id of feature 28179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166486 of field osm_id of feature 28180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166724 of field osm_id of feature 28181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166725 of field osm_id of feature 28182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166726 of field osm_id of feature 28183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166727 of field osm_id of feature 28184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166845 of field osm_id of feature 28185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479166846 of field osm_id of feature 28186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167579 of field osm_id of feature 28187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167583 of field osm_id of feature 28188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167586 of field osm_id of feature 28189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167590 of field osm_id of feature 28190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167596 of field osm_id of feature 28191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167603 of field osm_id of feature 28192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479167606 of field osm_id of feature 28193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168856 of field osm_id of feature 28194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168857 of field osm_id of feature 28195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168858 of field osm_id of feature 28196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168859 of field osm_id of feature 28197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168860 of field osm_id of feature 28198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168861 of field osm_id of feature 28199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168862 of field osm_id of feature 28200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479168863 of field osm_id of feature 28201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169486 of field osm_id of feature 28202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169487 of field osm_id of feature 28203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169487 of field osm_id of feature 28204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169488 of field osm_id of feature 28205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169588 of field osm_id of feature 28206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169589 of field osm_id of feature 28207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169590 of field osm_id of feature 28208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169591 of field osm_id of feature 28209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169592 of field osm_id of feature 28210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169593 of field osm_id of feature 28211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169594 of field osm_id of feature 28212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169595 of field osm_id of feature 28213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169596 of field osm_id of feature 28214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169597 of field osm_id of feature 28215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169598 of field osm_id of feature 28216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169599 of field osm_id of feature 28217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479169600 of field osm_id of feature 28218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170039 of field osm_id of feature 28219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170041 of field osm_id of feature 28220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170042 of field osm_id of feature 28221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170043 of field osm_id of feature 28222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170044 of field osm_id of feature 28223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170599 of field osm_id of feature 28224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170600 of field osm_id of feature 28225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170602 of field osm_id of feature 28226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170650 of field osm_id of feature 28227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479170657 of field osm_id of feature 28228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479171730 of field osm_id of feature 28229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479171731 of field osm_id of feature 28230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479171887 of field osm_id of feature 28231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479171957 of field osm_id of feature 28232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172000 of field osm_id of feature 28233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172000 of field osm_id of feature 28234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172001 of field osm_id of feature 28235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172226 of field osm_id of feature 28236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172227 of field osm_id of feature 28237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172228 of field osm_id of feature 28238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172229 of field osm_id of feature 28239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172230 of field osm_id of feature 28240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172301 of field osm_id of feature 28241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172302 of field osm_id of feature 28242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172303 of field osm_id of feature 28243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172304 of field osm_id of feature 28244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172519 of field osm_id of feature 28245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172520 of field osm_id of feature 28246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479172522 of field osm_id of feature 28247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173164 of field osm_id of feature 28248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173166 of field osm_id of feature 28249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173167 of field osm_id of feature 28250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173168 of field osm_id of feature 28251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173805 of field osm_id of feature 28252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173806 of field osm_id of feature 28253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173807 of field osm_id of feature 28254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479173808 of field osm_id of feature 28255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174082 of field osm_id of feature 28256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174083 of field osm_id of feature 28257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174084 of field osm_id of feature 28258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174085 of field osm_id of feature 28259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174085 of field osm_id of feature 28260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174086 of field osm_id of feature 28261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174087 of field osm_id of feature 28262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174188 of field osm_id of feature 28263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174189 of field osm_id of feature 28264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174190 of field osm_id of feature 28265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174191 of field osm_id of feature 28266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174860 of field osm_id of feature 28267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174891 of field osm_id of feature 28268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174891 of field osm_id of feature 28269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174892 of field osm_id of feature 28270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174893 of field osm_id of feature 28271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479174894 of field osm_id of feature 28272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175245 of field osm_id of feature 28273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175246 of field osm_id of feature 28274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175247 of field osm_id of feature 28275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175248 of field osm_id of feature 28276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175249 of field osm_id of feature 28277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175250 of field osm_id of feature 28278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175251 of field osm_id of feature 28279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175252 of field osm_id of feature 28280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175253 of field osm_id of feature 28281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175254 of field osm_id of feature 28282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175429 of field osm_id of feature 28283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175770 of field osm_id of feature 28284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479175771 of field osm_id of feature 28285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176301 of field osm_id of feature 28286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176301 of field osm_id of feature 28287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176302 of field osm_id of feature 28288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176303 of field osm_id of feature 28289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176304 of field osm_id of feature 28290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176304 of field osm_id of feature 28291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176305 of field osm_id of feature 28292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176306 of field osm_id of feature 28293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176307 of field osm_id of feature 28294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176308 of field osm_id of feature 28295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176309 of field osm_id of feature 28296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176309 of field osm_id of feature 28297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176310 of field osm_id of feature 28298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176310 of field osm_id of feature 28299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176446 of field osm_id of feature 28300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176447 of field osm_id of feature 28301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176448 of field osm_id of feature 28302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176449 of field osm_id of feature 28303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176450 of field osm_id of feature 28304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176451 of field osm_id of feature 28305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176452 of field osm_id of feature 28306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176453 of field osm_id of feature 28307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176520 of field osm_id of feature 28308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176521 of field osm_id of feature 28309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176522 of field osm_id of feature 28310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176523 of field osm_id of feature 28311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176524 of field osm_id of feature 28312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176729 of field osm_id of feature 28313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176730 of field osm_id of feature 28314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176731 of field osm_id of feature 28315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176732 of field osm_id of feature 28316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176733 of field osm_id of feature 28317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176734 of field osm_id of feature 28318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176735 of field osm_id of feature 28319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479176736 of field osm_id of feature 28320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479177469 of field osm_id of feature 28321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479177473 of field osm_id of feature 28322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479177477 of field osm_id of feature 28323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178543 of field osm_id of feature 28324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178544 of field osm_id of feature 28325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178545 of field osm_id of feature 28326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178546 of field osm_id of feature 28327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178547 of field osm_id of feature 28328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178548 of field osm_id of feature 28329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178699 of field osm_id of feature 28330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178853 of field osm_id of feature 28331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178854 of field osm_id of feature 28332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178855 of field osm_id of feature 28333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178856 of field osm_id of feature 28334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178857 of field osm_id of feature 28335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178858 of field osm_id of feature 28336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178859 of field osm_id of feature 28337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178860 of field osm_id of feature 28338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178861 of field osm_id of feature 28339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479178862 of field osm_id of feature 28340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180377 of field osm_id of feature 28341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180378 of field osm_id of feature 28342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180380 of field osm_id of feature 28343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180382 of field osm_id of feature 28344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180383 of field osm_id of feature 28345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180384 of field osm_id of feature 28346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479180386 of field osm_id of feature 28347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181058 of field osm_id of feature 28348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181059 of field osm_id of feature 28349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181060 of field osm_id of feature 28350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181061 of field osm_id of feature 28351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181062 of field osm_id of feature 28352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181063 of field osm_id of feature 28353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181064 of field osm_id of feature 28354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181065 of field osm_id of feature 28355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181293 of field osm_id of feature 28356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181294 of field osm_id of feature 28357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181295 of field osm_id of feature 28358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181296 of field osm_id of feature 28359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181297 of field osm_id of feature 28360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181298 of field osm_id of feature 28361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181299 of field osm_id of feature 28362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181300 of field osm_id of feature 28363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181527 of field osm_id of feature 28364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181528 of field osm_id of feature 28365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181641 of field osm_id of feature 28366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181642 of field osm_id of feature 28367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181643 of field osm_id of feature 28368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181644 of field osm_id of feature 28369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181645 of field osm_id of feature 28370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479181646 of field osm_id of feature 28371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183219 of field osm_id of feature 28372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183219 of field osm_id of feature 28373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183220 of field osm_id of feature 28374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183220 of field osm_id of feature 28375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183221 of field osm_id of feature 28376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183222 of field osm_id of feature 28377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183223 of field osm_id of feature 28378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183224 of field osm_id of feature 28379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183225 of field osm_id of feature 28380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183225 of field osm_id of feature 28381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183226 of field osm_id of feature 28382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183226 of field osm_id of feature 28383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479183662 of field osm_id of feature 28384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185129 of field osm_id of feature 28385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185130 of field osm_id of feature 28386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185327 of field osm_id of feature 28387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185328 of field osm_id of feature 28388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185549 of field osm_id of feature 28389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185852 of field osm_id of feature 28390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185853 of field osm_id of feature 28391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479185854 of field osm_id of feature 28392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186238 of field osm_id of feature 28393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186431 of field osm_id of feature 28394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186785 of field osm_id of feature 28395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186786 of field osm_id of feature 28396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186787 of field osm_id of feature 28397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479186788 of field osm_id of feature 28398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479187682 of field osm_id of feature 28399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479187683 of field osm_id of feature 28400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479187684 of field osm_id of feature 28401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479187685 of field osm_id of feature 28402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479187686 of field osm_id of feature 28403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479188264 of field osm_id of feature 28404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479189205 of field osm_id of feature 28405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479205001 of field osm_id of feature 28406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479205322 of field osm_id of feature 28407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479205322 of field osm_id of feature 28408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479284866 of field osm_id of feature 28409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479284867 of field osm_id of feature 28410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479289624 of field osm_id of feature 28411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479289625 of field osm_id of feature 28412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479291746 of field osm_id of feature 28413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479291747 of field osm_id of feature 28414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479294597 of field osm_id of feature 28415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479294598 of field osm_id of feature 28416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479298546 of field osm_id of feature 28417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479298547 of field osm_id of feature 28418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479298548 of field osm_id of feature 28419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479299124 of field osm_id of feature 28420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479299125 of field osm_id of feature 28421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479299126 of field osm_id of feature 28422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479299127 of field osm_id of feature 28423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479300516 of field osm_id of feature 28424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479300519 of field osm_id of feature 28425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479300523 of field osm_id of feature 28426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479300526 of field osm_id of feature 28427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302145 of field osm_id of feature 28428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302146 of field osm_id of feature 28429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302147 of field osm_id of feature 28430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302148 of field osm_id of feature 28431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302149 of field osm_id of feature 28432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302534 of field osm_id of feature 28433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302535 of field osm_id of feature 28434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479302536 of field osm_id of feature 28435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303219 of field osm_id of feature 28436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303220 of field osm_id of feature 28437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303221 of field osm_id of feature 28438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303925 of field osm_id of feature 28439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303933 of field osm_id of feature 28440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303937 of field osm_id of feature 28441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303941 of field osm_id of feature 28442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303944 of field osm_id of feature 28443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303950 of field osm_id of feature 28444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303952 of field osm_id of feature 28445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479303955 of field osm_id of feature 28446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304700 of field osm_id of feature 28447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304703 of field osm_id of feature 28448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304704 of field osm_id of feature 28449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304705 of field osm_id of feature 28450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304706 of field osm_id of feature 28451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304707 of field osm_id of feature 28452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304708 of field osm_id of feature 28453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304955 of field osm_id of feature 28454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304956 of field osm_id of feature 28455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304957 of field osm_id of feature 28456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479304958 of field osm_id of feature 28457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305351 of field osm_id of feature 28458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305353 of field osm_id of feature 28459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305354 of field osm_id of feature 28460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305356 of field osm_id of feature 28461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305358 of field osm_id of feature 28462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479305360 of field osm_id of feature 28463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479306732 of field osm_id of feature 28464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479306735 of field osm_id of feature 28465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309336 of field osm_id of feature 28466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309337 of field osm_id of feature 28467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309339 of field osm_id of feature 28468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309340 of field osm_id of feature 28469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309346 of field osm_id of feature 28470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309347 of field osm_id of feature 28471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309348 of field osm_id of feature 28472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309349 of field osm_id of feature 28473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309350 of field osm_id of feature 28474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479309352 of field osm_id of feature 28475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310192 of field osm_id of feature 28476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310193 of field osm_id of feature 28477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310194 of field osm_id of feature 28478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310195 of field osm_id of feature 28479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310196 of field osm_id of feature 28480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310197 of field osm_id of feature 28481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310199 of field osm_id of feature 28482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310200 of field osm_id of feature 28483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479310536 of field osm_id of feature 28484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479311918 of field osm_id of feature 28485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479311920 of field osm_id of feature 28486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479311923 of field osm_id of feature 28487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479311925 of field osm_id of feature 28488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479311928 of field osm_id of feature 28489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479313468 of field osm_id of feature 28490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479315873 of field osm_id of feature 28491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479315875 of field osm_id of feature 28492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479315877 of field osm_id of feature 28493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479315878 of field osm_id of feature 28494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479323175 of field osm_id of feature 28495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324762 of field osm_id of feature 28496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324763 of field osm_id of feature 28497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324764 of field osm_id of feature 28498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324765 of field osm_id of feature 28499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324766 of field osm_id of feature 28500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479324767 of field osm_id of feature 28501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325838 of field osm_id of feature 28502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325839 of field osm_id of feature 28503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325840 of field osm_id of feature 28504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325841 of field osm_id of feature 28505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325842 of field osm_id of feature 28506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325843 of field osm_id of feature 28507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325844 of field osm_id of feature 28508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325845 of field osm_id of feature 28509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325846 of field osm_id of feature 28510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325847 of field osm_id of feature 28511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479325848 of field osm_id of feature 28512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326459 of field osm_id of feature 28513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326462 of field osm_id of feature 28514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326464 of field osm_id of feature 28515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326465 of field osm_id of feature 28516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326466 of field osm_id of feature 28517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326468 of field osm_id of feature 28518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326469 of field osm_id of feature 28519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326470 of field osm_id of feature 28520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326871 of field osm_id of feature 28521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326874 of field osm_id of feature 28522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326876 of field osm_id of feature 28523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326879 of field osm_id of feature 28524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479326882 of field osm_id of feature 28525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479328457 of field osm_id of feature 28526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479328463 of field osm_id of feature 28527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479328466 of field osm_id of feature 28528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330599 of field osm_id of feature 28529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330600 of field osm_id of feature 28530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330601 of field osm_id of feature 28531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330602 of field osm_id of feature 28532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330603 of field osm_id of feature 28533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330604 of field osm_id of feature 28534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479330605 of field osm_id of feature 28535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479331229 of field osm_id of feature 28536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332223 of field osm_id of feature 28537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332224 of field osm_id of feature 28538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332225 of field osm_id of feature 28539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332226 of field osm_id of feature 28540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332227 of field osm_id of feature 28541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479332840 of field osm_id of feature 28542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479334769 of field osm_id of feature 28543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479335368 of field osm_id of feature 28544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479335369 of field osm_id of feature 28545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336115 of field osm_id of feature 28546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336116 of field osm_id of feature 28547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336117 of field osm_id of feature 28548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336118 of field osm_id of feature 28549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336122 of field osm_id of feature 28550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336123 of field osm_id of feature 28551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336510 of field osm_id of feature 28552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479336511 of field osm_id of feature 28553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337344 of field osm_id of feature 28554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337784 of field osm_id of feature 28555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337785 of field osm_id of feature 28556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337786 of field osm_id of feature 28557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337787 of field osm_id of feature 28558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337788 of field osm_id of feature 28559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337789 of field osm_id of feature 28560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337790 of field osm_id of feature 28561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337791 of field osm_id of feature 28562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337792 of field osm_id of feature 28563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337793 of field osm_id of feature 28564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337794 of field osm_id of feature 28565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337795 of field osm_id of feature 28566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337796 of field osm_id of feature 28567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337797 of field osm_id of feature 28568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337829 of field osm_id of feature 28569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337830 of field osm_id of feature 28570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479337907 of field osm_id of feature 28571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479338622 of field osm_id of feature 28572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479338623 of field osm_id of feature 28573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479338624 of field osm_id of feature 28574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479338625 of field osm_id of feature 28575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339458 of field osm_id of feature 28576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339459 of field osm_id of feature 28577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339460 of field osm_id of feature 28578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339461 of field osm_id of feature 28579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339463 of field osm_id of feature 28580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479339465 of field osm_id of feature 28581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479340127 of field osm_id of feature 28582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479340492 of field osm_id of feature 28583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479340572 of field osm_id of feature 28584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341046 of field osm_id of feature 28585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341047 of field osm_id of feature 28586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341048 of field osm_id of feature 28587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341049 of field osm_id of feature 28588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341050 of field osm_id of feature 28589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341051 of field osm_id of feature 28590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341052 of field osm_id of feature 28591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341922 of field osm_id of feature 28592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341923 of field osm_id of feature 28593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479341924 of field osm_id of feature 28594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342345 of field osm_id of feature 28595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342452 of field osm_id of feature 28596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342613 of field osm_id of feature 28597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342615 of field osm_id of feature 28598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342618 of field osm_id of feature 28599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479342620 of field osm_id of feature 28600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479343205 of field osm_id of feature 28601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479344334 of field osm_id of feature 28602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479344335 of field osm_id of feature 28603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479344336 of field osm_id of feature 28604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479344337 of field osm_id of feature 28605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479344564 of field osm_id of feature 28606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479353563 of field osm_id of feature 28607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479353564 of field osm_id of feature 28608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479354382 of field osm_id of feature 28609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479354742 of field osm_id of feature 28610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479354743 of field osm_id of feature 28611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355198 of field osm_id of feature 28612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355550 of field osm_id of feature 28613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355551 of field osm_id of feature 28614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355552 of field osm_id of feature 28615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355553 of field osm_id of feature 28616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355554 of field osm_id of feature 28617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479355555 of field osm_id of feature 28618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356424 of field osm_id of feature 28619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356425 of field osm_id of feature 28620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356426 of field osm_id of feature 28621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356427 of field osm_id of feature 28622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356428 of field osm_id of feature 28623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356429 of field osm_id of feature 28624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356429 of field osm_id of feature 28625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479356430 of field osm_id of feature 28626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358016 of field osm_id of feature 28627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358018 of field osm_id of feature 28628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358019 of field osm_id of feature 28629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358020 of field osm_id of feature 28630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358021 of field osm_id of feature 28631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358597 of field osm_id of feature 28632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358598 of field osm_id of feature 28633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479358599 of field osm_id of feature 28634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479359300 of field osm_id of feature 28635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479359304 of field osm_id of feature 28636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479360159 of field osm_id of feature 28637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479361798 of field osm_id of feature 28638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479361799 of field osm_id of feature 28639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479363928 of field osm_id of feature 28640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479363929 of field osm_id of feature 28641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479363930 of field osm_id of feature 28642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479363931 of field osm_id of feature 28643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365739 of field osm_id of feature 28644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365873 of field osm_id of feature 28645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365899 of field osm_id of feature 28646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365901 of field osm_id of feature 28647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365903 of field osm_id of feature 28648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365905 of field osm_id of feature 28649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365906 of field osm_id of feature 28650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365907 of field osm_id of feature 28651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365908 of field osm_id of feature 28652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365995 of field osm_id of feature 28653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365996 of field osm_id of feature 28654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479365997 of field osm_id of feature 28655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366000 of field osm_id of feature 28656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366003 of field osm_id of feature 28657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366006 of field osm_id of feature 28658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366009 of field osm_id of feature 28659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366012 of field osm_id of feature 28660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366014 of field osm_id of feature 28661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366060 of field osm_id of feature 28662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479366091 of field osm_id of feature 28663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370440 of field osm_id of feature 28664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370441 of field osm_id of feature 28665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370442 of field osm_id of feature 28666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370443 of field osm_id of feature 28667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370444 of field osm_id of feature 28668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370445 of field osm_id of feature 28669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370446 of field osm_id of feature 28670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370447 of field osm_id of feature 28671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370448 of field osm_id of feature 28672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370449 of field osm_id of feature 28673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370603 of field osm_id of feature 28674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479370607 of field osm_id of feature 28675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479371790 of field osm_id of feature 28676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479371791 of field osm_id of feature 28677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479372385 of field osm_id of feature 28678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479372387 of field osm_id of feature 28679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479372579 of field osm_id of feature 28680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479372581 of field osm_id of feature 28681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479372585 of field osm_id of feature 28682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479374938 of field osm_id of feature 28683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479374939 of field osm_id of feature 28684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479374940 of field osm_id of feature 28685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479374941 of field osm_id of feature 28686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479374942 of field osm_id of feature 28687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479375247 of field osm_id of feature 28688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479375281 of field osm_id of feature 28689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376107 of field osm_id of feature 28690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376140 of field osm_id of feature 28691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376141 of field osm_id of feature 28692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376142 of field osm_id of feature 28693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376143 of field osm_id of feature 28694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376144 of field osm_id of feature 28695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376475 of field osm_id of feature 28696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479376483 of field osm_id of feature 28697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377236 of field osm_id of feature 28698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377237 of field osm_id of feature 28699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377238 of field osm_id of feature 28700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377239 of field osm_id of feature 28701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377240 of field osm_id of feature 28702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377241 of field osm_id of feature 28703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377903 of field osm_id of feature 28704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479377904 of field osm_id of feature 28705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378219 of field osm_id of feature 28706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378220 of field osm_id of feature 28707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378257 of field osm_id of feature 28708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378258 of field osm_id of feature 28709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378259 of field osm_id of feature 28710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378267 of field osm_id of feature 28711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378353 of field osm_id of feature 28712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378354 of field osm_id of feature 28713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378365 of field osm_id of feature 28714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378366 of field osm_id of feature 28715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378847 of field osm_id of feature 28716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378848 of field osm_id of feature 28717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378849 of field osm_id of feature 28718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378850 of field osm_id of feature 28719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378851 of field osm_id of feature 28720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479378852 of field osm_id of feature 28721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379353 of field osm_id of feature 28722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379354 of field osm_id of feature 28723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379355 of field osm_id of feature 28724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379757 of field osm_id of feature 28725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379760 of field osm_id of feature 28726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479379761 of field osm_id of feature 28727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381297 of field osm_id of feature 28728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381298 of field osm_id of feature 28729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381299 of field osm_id of feature 28730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381300 of field osm_id of feature 28731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381301 of field osm_id of feature 28732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381302 of field osm_id of feature 28733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381567 of field osm_id of feature 28734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381726 of field osm_id of feature 28735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381728 of field osm_id of feature 28736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381731 of field osm_id of feature 28737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381733 of field osm_id of feature 28738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381735 of field osm_id of feature 28739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381737 of field osm_id of feature 28740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381740 of field osm_id of feature 28741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381742 of field osm_id of feature 28742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479381745 of field osm_id of feature 28743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382009 of field osm_id of feature 28744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382010 of field osm_id of feature 28745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382143 of field osm_id of feature 28746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382233 of field osm_id of feature 28747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382236 of field osm_id of feature 28748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382392 of field osm_id of feature 28749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382393 of field osm_id of feature 28750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382395 of field osm_id of feature 28751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382396 of field osm_id of feature 28752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382397 of field osm_id of feature 28753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479382606 of field osm_id of feature 28754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479383580 of field osm_id of feature 28755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479384045 of field osm_id of feature 28756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479384753 of field osm_id of feature 28757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479384755 of field osm_id of feature 28758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385058 of field osm_id of feature 28759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385129 of field osm_id of feature 28760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385130 of field osm_id of feature 28761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385131 of field osm_id of feature 28762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385132 of field osm_id of feature 28763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479385453 of field osm_id of feature 28764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479387457 of field osm_id of feature 28765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479387458 of field osm_id of feature 28766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479387459 of field osm_id of feature 28767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479387460 of field osm_id of feature 28768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479387940 of field osm_id of feature 28769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479388625 of field osm_id of feature 28770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479388629 of field osm_id of feature 28771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479388630 of field osm_id of feature 28772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479388631 of field osm_id of feature 28773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479388632 of field osm_id of feature 28774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390104 of field osm_id of feature 28775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390105 of field osm_id of feature 28776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390106 of field osm_id of feature 28777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390107 of field osm_id of feature 28778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390108 of field osm_id of feature 28779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390109 of field osm_id of feature 28780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390110 of field osm_id of feature 28781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390111 of field osm_id of feature 28782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390112 of field osm_id of feature 28783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479390113 of field osm_id of feature 28784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479529431 of field osm_id of feature 28785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479529432 of field osm_id of feature 28786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479529433 of field osm_id of feature 28787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479529434 of field osm_id of feature 28788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479535239 of field osm_id of feature 28789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479535467 of field osm_id of feature 28790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479535741 of field osm_id of feature 28791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479536421 of field osm_id of feature 28792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479536423 of field osm_id of feature 28793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537326 of field osm_id of feature 28794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537328 of field osm_id of feature 28795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537596 of field osm_id of feature 28796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537597 of field osm_id of feature 28797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537598 of field osm_id of feature 28798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537599 of field osm_id of feature 28799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479537600 of field osm_id of feature 28800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538850 of field osm_id of feature 28801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538851 of field osm_id of feature 28802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538854 of field osm_id of feature 28803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538855 of field osm_id of feature 28804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538856 of field osm_id of feature 28805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538857 of field osm_id of feature 28806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538858 of field osm_id of feature 28807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538859 of field osm_id of feature 28808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538860 of field osm_id of feature 28809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538862 of field osm_id of feature 28810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538863 of field osm_id of feature 28811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479538864 of field osm_id of feature 28812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539530 of field osm_id of feature 28813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539531 of field osm_id of feature 28814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539532 of field osm_id of feature 28815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539533 of field osm_id of feature 28816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539535 of field osm_id of feature 28817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539717 of field osm_id of feature 28818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539718 of field osm_id of feature 28819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539719 of field osm_id of feature 28820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539719 of field osm_id of feature 28821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539720 of field osm_id of feature 28822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479539721 of field osm_id of feature 28823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540198 of field osm_id of feature 28824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540200 of field osm_id of feature 28825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540202 of field osm_id of feature 28826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540206 of field osm_id of feature 28827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540207 of field osm_id of feature 28828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540534 of field osm_id of feature 28829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540535 of field osm_id of feature 28830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540536 of field osm_id of feature 28831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540537 of field osm_id of feature 28832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540538 of field osm_id of feature 28833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540539 of field osm_id of feature 28834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540704 of field osm_id of feature 28835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479540705 of field osm_id of feature 28836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541252 of field osm_id of feature 28837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541253 of field osm_id of feature 28838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541254 of field osm_id of feature 28839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541255 of field osm_id of feature 28840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541256 of field osm_id of feature 28841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541257 of field osm_id of feature 28842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541258 of field osm_id of feature 28843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541339 of field osm_id of feature 28844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541552 of field osm_id of feature 28845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541553 of field osm_id of feature 28846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541554 of field osm_id of feature 28847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541555 of field osm_id of feature 28848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541556 of field osm_id of feature 28849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479541557 of field osm_id of feature 28850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542293 of field osm_id of feature 28851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542294 of field osm_id of feature 28852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542295 of field osm_id of feature 28853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542296 of field osm_id of feature 28854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542297 of field osm_id of feature 28855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542298 of field osm_id of feature 28856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542556 of field osm_id of feature 28857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542556 of field osm_id of feature 28858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542557 of field osm_id of feature 28859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542560 of field osm_id of feature 28860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542735 of field osm_id of feature 28861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542736 of field osm_id of feature 28862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542737 of field osm_id of feature 28863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479542738 of field osm_id of feature 28864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479543066 of field osm_id of feature 28865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479543067 of field osm_id of feature 28866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479544356 of field osm_id of feature 28867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479544596 of field osm_id of feature 28868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479544597 of field osm_id of feature 28869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547676 of field osm_id of feature 28870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547677 of field osm_id of feature 28871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547678 of field osm_id of feature 28872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547679 of field osm_id of feature 28873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547680 of field osm_id of feature 28874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479547680 of field osm_id of feature 28875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549838 of field osm_id of feature 28876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549839 of field osm_id of feature 28877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549840 of field osm_id of feature 28878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549841 of field osm_id of feature 28879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549842 of field osm_id of feature 28880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549843 of field osm_id of feature 28881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549844 of field osm_id of feature 28882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549845 of field osm_id of feature 28883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479549846 of field osm_id of feature 28884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479550045 of field osm_id of feature 28885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551977 of field osm_id of feature 28886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551978 of field osm_id of feature 28887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551979 of field osm_id of feature 28888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551980 of field osm_id of feature 28889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551981 of field osm_id of feature 28890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551982 of field osm_id of feature 28891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551982 of field osm_id of feature 28892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551983 of field osm_id of feature 28893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551983 of field osm_id of feature 28894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551984 of field osm_id of feature 28895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551984 of field osm_id of feature 28896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479551985 of field osm_id of feature 28897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479552276 of field osm_id of feature 28898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479552277 of field osm_id of feature 28899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479552717 of field osm_id of feature 28900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479552718 of field osm_id of feature 28901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479552719 of field osm_id of feature 28902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479553994 of field osm_id of feature 28903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479554993 of field osm_id of feature 28904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479554994 of field osm_id of feature 28905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555642 of field osm_id of feature 28906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555643 of field osm_id of feature 28907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555644 of field osm_id of feature 28908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555645 of field osm_id of feature 28909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555646 of field osm_id of feature 28910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555647 of field osm_id of feature 28911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555648 of field osm_id of feature 28912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555650 of field osm_id of feature 28913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555651 of field osm_id of feature 28914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555652 of field osm_id of feature 28915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555653 of field osm_id of feature 28916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479555654 of field osm_id of feature 28917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556874 of field osm_id of feature 28918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556875 of field osm_id of feature 28919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556876 of field osm_id of feature 28920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556877 of field osm_id of feature 28921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556878 of field osm_id of feature 28922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556879 of field osm_id of feature 28923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479556880 of field osm_id of feature 28924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479557960 of field osm_id of feature 28925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479557961 of field osm_id of feature 28926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558167 of field osm_id of feature 28927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558168 of field osm_id of feature 28928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558169 of field osm_id of feature 28929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558170 of field osm_id of feature 28930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558171 of field osm_id of feature 28931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558172 of field osm_id of feature 28932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558173 of field osm_id of feature 28933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558174 of field osm_id of feature 28934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558175 of field osm_id of feature 28935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558176 of field osm_id of feature 28936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558177 of field osm_id of feature 28937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479558178 of field osm_id of feature 28938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561509 of field osm_id of feature 28939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561510 of field osm_id of feature 28940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561510 of field osm_id of feature 28941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561511 of field osm_id of feature 28942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561512 of field osm_id of feature 28943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561513 of field osm_id of feature 28944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561514 of field osm_id of feature 28945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561514 of field osm_id of feature 28946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561516 of field osm_id of feature 28947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561517 of field osm_id of feature 28948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561518 of field osm_id of feature 28949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561519 of field osm_id of feature 28950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561519 of field osm_id of feature 28951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479561727 of field osm_id of feature 28952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479562385 of field osm_id of feature 28953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479562489 of field osm_id of feature 28954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479563865 of field osm_id of feature 28955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564266 of field osm_id of feature 28956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564544 of field osm_id of feature 28957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564859 of field osm_id of feature 28958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564862 of field osm_id of feature 28959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564864 of field osm_id of feature 28960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564868 of field osm_id of feature 28961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564870 of field osm_id of feature 28962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564873 of field osm_id of feature 28963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564873 of field osm_id of feature 28964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564875 of field osm_id of feature 28965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479564876 of field osm_id of feature 28966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565608 of field osm_id of feature 28967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565609 of field osm_id of feature 28968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565612 of field osm_id of feature 28969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565613 of field osm_id of feature 28970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565614 of field osm_id of feature 28971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565615 of field osm_id of feature 28972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565801 of field osm_id of feature 28973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565852 of field osm_id of feature 28974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565853 of field osm_id of feature 28975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479565853 of field osm_id of feature 28976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566107 of field osm_id of feature 28977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566110 of field osm_id of feature 28978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566111 of field osm_id of feature 28979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566373 of field osm_id of feature 28980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566374 of field osm_id of feature 28981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566739 of field osm_id of feature 28982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566741 of field osm_id of feature 28983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566742 of field osm_id of feature 28984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566797 of field osm_id of feature 28985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479566798 of field osm_id of feature 28986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479567106 of field osm_id of feature 28987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479567107 of field osm_id of feature 28988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568075 of field osm_id of feature 28989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568076 of field osm_id of feature 28990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568120 of field osm_id of feature 28991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568121 of field osm_id of feature 28992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568122 of field osm_id of feature 28993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568216 of field osm_id of feature 28994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568569 of field osm_id of feature 28995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568570 of field osm_id of feature 28996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568571 of field osm_id of feature 28997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568572 of field osm_id of feature 28998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568573 of field osm_id of feature 28999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568574 of field osm_id of feature 29000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568574 of field osm_id of feature 29001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568575 of field osm_id of feature 29002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568576 of field osm_id of feature 29003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568577 of field osm_id of feature 29004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568578 of field osm_id of feature 29005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479568579 of field osm_id of feature 29006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569026 of field osm_id of feature 29007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569230 of field osm_id of feature 29008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569231 of field osm_id of feature 29009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569232 of field osm_id of feature 29010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569233 of field osm_id of feature 29011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569234 of field osm_id of feature 29012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569235 of field osm_id of feature 29013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569350 of field osm_id of feature 29014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569351 of field osm_id of feature 29015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569352 of field osm_id of feature 29016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569352 of field osm_id of feature 29017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569575 of field osm_id of feature 29018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479569575 of field osm_id of feature 29019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479570233 of field osm_id of feature 29020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479570787 of field osm_id of feature 29021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479570788 of field osm_id of feature 29022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479572692 of field osm_id of feature 29023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479572695 of field osm_id of feature 29024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575738 of field osm_id of feature 29025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575739 of field osm_id of feature 29026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575740 of field osm_id of feature 29027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575741 of field osm_id of feature 29028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575742 of field osm_id of feature 29029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479575743 of field osm_id of feature 29030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479576943 of field osm_id of feature 29031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479576944 of field osm_id of feature 29032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479576948 of field osm_id of feature 29033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479576948 of field osm_id of feature 29034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479576950 of field osm_id of feature 29035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479577044 of field osm_id of feature 29036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479577045 of field osm_id of feature 29037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479577047 of field osm_id of feature 29038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479597324 of field osm_id of feature 29039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479599817 of field osm_id of feature 29040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479600306 of field osm_id of feature 29041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479600307 of field osm_id of feature 29042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479600309 of field osm_id of feature 29043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479600310 of field osm_id of feature 29044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479600311 of field osm_id of feature 29045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602274 of field osm_id of feature 29046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602277 of field osm_id of feature 29047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602279 of field osm_id of feature 29048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602282 of field osm_id of feature 29049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602285 of field osm_id of feature 29050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602291 of field osm_id of feature 29051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602296 of field osm_id of feature 29052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602300 of field osm_id of feature 29053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602306 of field osm_id of feature 29054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602309 of field osm_id of feature 29055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602313 of field osm_id of feature 29056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602316 of field osm_id of feature 29057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479602347 of field osm_id of feature 29058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604070 of field osm_id of feature 29059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604071 of field osm_id of feature 29060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604072 of field osm_id of feature 29061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604073 of field osm_id of feature 29062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604074 of field osm_id of feature 29063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604501 of field osm_id of feature 29064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479604502 of field osm_id of feature 29065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605554 of field osm_id of feature 29066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605555 of field osm_id of feature 29067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605558 of field osm_id of feature 29068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605559 of field osm_id of feature 29069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605562 of field osm_id of feature 29070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605564 of field osm_id of feature 29071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605565 of field osm_id of feature 29072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605566 of field osm_id of feature 29073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605910 of field osm_id of feature 29074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479605911 of field osm_id of feature 29075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606435 of field osm_id of feature 29076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606436 of field osm_id of feature 29077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606437 of field osm_id of feature 29078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606438 of field osm_id of feature 29079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606439 of field osm_id of feature 29080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606440 of field osm_id of feature 29081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479606959 of field osm_id of feature 29082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608032 of field osm_id of feature 29083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608035 of field osm_id of feature 29084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608038 of field osm_id of feature 29085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608041 of field osm_id of feature 29086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608043 of field osm_id of feature 29087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608045 of field osm_id of feature 29088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608046 of field osm_id of feature 29089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608048 of field osm_id of feature 29090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608049 of field osm_id of feature 29091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608887 of field osm_id of feature 29092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608888 of field osm_id of feature 29093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608889 of field osm_id of feature 29094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608890 of field osm_id of feature 29095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608891 of field osm_id of feature 29096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608892 of field osm_id of feature 29097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608893 of field osm_id of feature 29098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479608894 of field osm_id of feature 29099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479609314 of field osm_id of feature 29100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479609315 of field osm_id of feature 29101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479609316 of field osm_id of feature 29102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479609317 of field osm_id of feature 29103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479610398 of field osm_id of feature 29104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479610952 of field osm_id of feature 29105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479611606 of field osm_id of feature 29106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479611607 of field osm_id of feature 29107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479612874 of field osm_id of feature 29108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479612875 of field osm_id of feature 29109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479612876 of field osm_id of feature 29110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479612877 of field osm_id of feature 29111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479612878 of field osm_id of feature 29112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479614164 of field osm_id of feature 29113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479614165 of field osm_id of feature 29114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615164 of field osm_id of feature 29115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615165 of field osm_id of feature 29116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615344 of field osm_id of feature 29117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615345 of field osm_id of feature 29118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615346 of field osm_id of feature 29119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615347 of field osm_id of feature 29120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479615877 of field osm_id of feature 29121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616017 of field osm_id of feature 29122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616086 of field osm_id of feature 29123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616087 of field osm_id of feature 29124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616088 of field osm_id of feature 29125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616089 of field osm_id of feature 29126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616090 of field osm_id of feature 29127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616091 of field osm_id of feature 29128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616093 of field osm_id of feature 29129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616150 of field osm_id of feature 29130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616293 of field osm_id of feature 29131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616313 of field osm_id of feature 29132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616333 of field osm_id of feature 29133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616334 of field osm_id of feature 29134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616335 of field osm_id of feature 29135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616336 of field osm_id of feature 29136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616337 of field osm_id of feature 29137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616338 of field osm_id of feature 29138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616339 of field osm_id of feature 29139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616340 of field osm_id of feature 29140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616341 of field osm_id of feature 29141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616342 of field osm_id of feature 29142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616343 of field osm_id of feature 29143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616344 of field osm_id of feature 29144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616345 of field osm_id of feature 29145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616346 of field osm_id of feature 29146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616347 of field osm_id of feature 29147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616348 of field osm_id of feature 29148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616488 of field osm_id of feature 29149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616489 of field osm_id of feature 29150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616490 of field osm_id of feature 29151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616491 of field osm_id of feature 29152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616492 of field osm_id of feature 29153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479616493 of field osm_id of feature 29154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479619179 of field osm_id of feature 29155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479619180 of field osm_id of feature 29156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734990 of field osm_id of feature 29157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734992 of field osm_id of feature 29158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734993 of field osm_id of feature 29159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734994 of field osm_id of feature 29160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734994 of field osm_id of feature 29161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479734995 of field osm_id of feature 29162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479740739 of field osm_id of feature 29163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479740740 of field osm_id of feature 29164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479740741 of field osm_id of feature 29165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479740742 of field osm_id of feature 29166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479741636 of field osm_id of feature 29167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479741892 of field osm_id of feature 29168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479741892 of field osm_id of feature 29169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479741893 of field osm_id of feature 29170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742032 of field osm_id of feature 29171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742033 of field osm_id of feature 29172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742358 of field osm_id of feature 29173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742359 of field osm_id of feature 29174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742394 of field osm_id of feature 29175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742395 of field osm_id of feature 29176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742397 of field osm_id of feature 29177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742399 of field osm_id of feature 29178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742400 of field osm_id of feature 29179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479742401 of field osm_id of feature 29180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479743196 of field osm_id of feature 29181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479743200 of field osm_id of feature 29182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479743205 of field osm_id of feature 29183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479743210 of field osm_id of feature 29184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479743919 of field osm_id of feature 29185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744113 of field osm_id of feature 29186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744114 of field osm_id of feature 29187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744115 of field osm_id of feature 29188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744116 of field osm_id of feature 29189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744119 of field osm_id of feature 29190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744120 of field osm_id of feature 29191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744121 of field osm_id of feature 29192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744122 of field osm_id of feature 29193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744124 of field osm_id of feature 29194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744125 of field osm_id of feature 29195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744126 of field osm_id of feature 29196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744127 of field osm_id of feature 29197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744508 of field osm_id of feature 29198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744509 of field osm_id of feature 29199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744510 of field osm_id of feature 29200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744511 of field osm_id of feature 29201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744673 of field osm_id of feature 29202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744674 of field osm_id of feature 29203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744675 of field osm_id of feature 29204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744676 of field osm_id of feature 29205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744677 of field osm_id of feature 29206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479744680 of field osm_id of feature 29207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745394 of field osm_id of feature 29208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745395 of field osm_id of feature 29209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745396 of field osm_id of feature 29210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745397 of field osm_id of feature 29211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745478 of field osm_id of feature 29212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745479 of field osm_id of feature 29213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745635 of field osm_id of feature 29214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745636 of field osm_id of feature 29215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745637 of field osm_id of feature 29216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745786 of field osm_id of feature 29217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745787 of field osm_id of feature 29218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745788 of field osm_id of feature 29219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745789 of field osm_id of feature 29220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745804 of field osm_id of feature 29221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745805 of field osm_id of feature 29222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745806 of field osm_id of feature 29223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745807 of field osm_id of feature 29224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745942 of field osm_id of feature 29225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745943 of field osm_id of feature 29226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745944 of field osm_id of feature 29227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745945 of field osm_id of feature 29228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745946 of field osm_id of feature 29229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745947 of field osm_id of feature 29230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745948 of field osm_id of feature 29231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745949 of field osm_id of feature 29232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745950 of field osm_id of feature 29233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745951 of field osm_id of feature 29234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479745952 of field osm_id of feature 29235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746054 of field osm_id of feature 29236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746257 of field osm_id of feature 29237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746258 of field osm_id of feature 29238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746259 of field osm_id of feature 29239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746465 of field osm_id of feature 29240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746930 of field osm_id of feature 29241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746931 of field osm_id of feature 29242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479746932 of field osm_id of feature 29243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747044 of field osm_id of feature 29244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747045 of field osm_id of feature 29245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747045 of field osm_id of feature 29246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747046 of field osm_id of feature 29247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747047 of field osm_id of feature 29248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747060 of field osm_id of feature 29249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747187 of field osm_id of feature 29250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747188 of field osm_id of feature 29251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479747964 of field osm_id of feature 29252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479752773 of field osm_id of feature 29253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753119 of field osm_id of feature 29254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753340 of field osm_id of feature 29255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753342 of field osm_id of feature 29256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753462 of field osm_id of feature 29257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753463 of field osm_id of feature 29258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479753867 of field osm_id of feature 29259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754170 of field osm_id of feature 29260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754172 of field osm_id of feature 29261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754173 of field osm_id of feature 29262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754174 of field osm_id of feature 29263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754177 of field osm_id of feature 29264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754255 of field osm_id of feature 29265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754257 of field osm_id of feature 29266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754259 of field osm_id of feature 29267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754536 of field osm_id of feature 29268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479754537 of field osm_id of feature 29269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755263 of field osm_id of feature 29270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755264 of field osm_id of feature 29271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755312 of field osm_id of feature 29272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755313 of field osm_id of feature 29273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755314 of field osm_id of feature 29274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755315 of field osm_id of feature 29275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755316 of field osm_id of feature 29276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755317 of field osm_id of feature 29277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755318 of field osm_id of feature 29278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755320 of field osm_id of feature 29279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755794 of field osm_id of feature 29280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479755795 of field osm_id of feature 29281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756041 of field osm_id of feature 29282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756042 of field osm_id of feature 29283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756044 of field osm_id of feature 29284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756045 of field osm_id of feature 29285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756046 of field osm_id of feature 29286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756047 of field osm_id of feature 29287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756048 of field osm_id of feature 29288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756049 of field osm_id of feature 29289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756050 of field osm_id of feature 29290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479756051 of field osm_id of feature 29291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757210 of field osm_id of feature 29292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757211 of field osm_id of feature 29293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757212 of field osm_id of feature 29294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757213 of field osm_id of feature 29295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757214 of field osm_id of feature 29296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757255 of field osm_id of feature 29297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757255 of field osm_id of feature 29298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757256 of field osm_id of feature 29299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757257 of field osm_id of feature 29300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757258 of field osm_id of feature 29301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757259 of field osm_id of feature 29302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757259 of field osm_id of feature 29303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757260 of field osm_id of feature 29304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757261 of field osm_id of feature 29305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757262 of field osm_id of feature 29306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757263 of field osm_id of feature 29307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757265 of field osm_id of feature 29308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479757268 of field osm_id of feature 29309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758800 of field osm_id of feature 29310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758802 of field osm_id of feature 29311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758807 of field osm_id of feature 29312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758910 of field osm_id of feature 29313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758911 of field osm_id of feature 29314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479758914 of field osm_id of feature 29315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479760415 of field osm_id of feature 29316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479760438 of field osm_id of feature 29317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479761056 of field osm_id of feature 29318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479761058 of field osm_id of feature 29319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479761738 of field osm_id of feature 29320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479761739 of field osm_id of feature 29321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762180 of field osm_id of feature 29322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762184 of field osm_id of feature 29323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762187 of field osm_id of feature 29324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762313 of field osm_id of feature 29325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762314 of field osm_id of feature 29326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762704 of field osm_id of feature 29327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762705 of field osm_id of feature 29328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762706 of field osm_id of feature 29329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762707 of field osm_id of feature 29330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762708 of field osm_id of feature 29331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762709 of field osm_id of feature 29332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762710 of field osm_id of feature 29333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762986 of field osm_id of feature 29334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479762987 of field osm_id of feature 29335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763279 of field osm_id of feature 29336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763283 of field osm_id of feature 29337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763528 of field osm_id of feature 29338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763530 of field osm_id of feature 29339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763532 of field osm_id of feature 29340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479763535 of field osm_id of feature 29341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479764653 of field osm_id of feature 29342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479764655 of field osm_id of feature 29343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479765083 of field osm_id of feature 29344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479765084 of field osm_id of feature 29345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479765085 of field osm_id of feature 29346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479766320 of field osm_id of feature 29347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479766321 of field osm_id of feature 29348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479766701 of field osm_id of feature 29349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479766702 of field osm_id of feature 29350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479766703 of field osm_id of feature 29351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479769212 of field osm_id of feature 29352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479769796 of field osm_id of feature 29353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479769797 of field osm_id of feature 29354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770476 of field osm_id of feature 29355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770478 of field osm_id of feature 29356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770577 of field osm_id of feature 29357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770578 of field osm_id of feature 29358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770579 of field osm_id of feature 29359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770580 of field osm_id of feature 29360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479770581 of field osm_id of feature 29361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479771100 of field osm_id of feature 29362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479771101 of field osm_id of feature 29363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479771404 of field osm_id of feature 29364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772119 of field osm_id of feature 29365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772120 of field osm_id of feature 29366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772121 of field osm_id of feature 29367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772122 of field osm_id of feature 29368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772123 of field osm_id of feature 29369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772124 of field osm_id of feature 29370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772125 of field osm_id of feature 29371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772126 of field osm_id of feature 29372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772146 of field osm_id of feature 29373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772147 of field osm_id of feature 29374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772181 of field osm_id of feature 29375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772182 of field osm_id of feature 29376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772251 of field osm_id of feature 29377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772252 of field osm_id of feature 29378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772253 of field osm_id of feature 29379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772254 of field osm_id of feature 29380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772255 of field osm_id of feature 29381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772602 of field osm_id of feature 29382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772603 of field osm_id of feature 29383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772604 of field osm_id of feature 29384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772605 of field osm_id of feature 29385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479772606 of field osm_id of feature 29386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773037 of field osm_id of feature 29387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773038 of field osm_id of feature 29388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773089 of field osm_id of feature 29389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773090 of field osm_id of feature 29390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773429 of field osm_id of feature 29391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773430 of field osm_id of feature 29392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773431 of field osm_id of feature 29393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773433 of field osm_id of feature 29394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773434 of field osm_id of feature 29395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773435 of field osm_id of feature 29396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773435 of field osm_id of feature 29397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773436 of field osm_id of feature 29398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773437 of field osm_id of feature 29399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773438 of field osm_id of feature 29400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773438 of field osm_id of feature 29401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773439 of field osm_id of feature 29402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773704 of field osm_id of feature 29403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773705 of field osm_id of feature 29404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773706 of field osm_id of feature 29405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773707 of field osm_id of feature 29406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773708 of field osm_id of feature 29407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773709 of field osm_id of feature 29408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773889 of field osm_id of feature 29409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773890 of field osm_id of feature 29410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773891 of field osm_id of feature 29411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773892 of field osm_id of feature 29412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773893 of field osm_id of feature 29413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773894 of field osm_id of feature 29414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479773895 of field osm_id of feature 29415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774594 of field osm_id of feature 29416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774595 of field osm_id of feature 29417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774596 of field osm_id of feature 29418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774597 of field osm_id of feature 29419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774599 of field osm_id of feature 29420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774619 of field osm_id of feature 29421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774979 of field osm_id of feature 29422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774980 of field osm_id of feature 29423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774981 of field osm_id of feature 29424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774982 of field osm_id of feature 29425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774983 of field osm_id of feature 29426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774984 of field osm_id of feature 29427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774985 of field osm_id of feature 29428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479774986 of field osm_id of feature 29429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775514 of field osm_id of feature 29430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775515 of field osm_id of feature 29431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775516 of field osm_id of feature 29432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775517 of field osm_id of feature 29433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775518 of field osm_id of feature 29434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479775519 of field osm_id of feature 29435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479776396 of field osm_id of feature 29436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479776398 of field osm_id of feature 29437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479776403 of field osm_id of feature 29438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479776406 of field osm_id of feature 29439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779415 of field osm_id of feature 29440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779419 of field osm_id of feature 29441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779718 of field osm_id of feature 29442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779719 of field osm_id of feature 29443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779720 of field osm_id of feature 29444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479779721 of field osm_id of feature 29445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479780700 of field osm_id of feature 29446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479780701 of field osm_id of feature 29447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479780702 of field osm_id of feature 29448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479780703 of field osm_id of feature 29449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479780704 of field osm_id of feature 29450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479782740 of field osm_id of feature 29451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479782741 of field osm_id of feature 29452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479782744 of field osm_id of feature 29453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479782746 of field osm_id of feature 29454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479783897 of field osm_id of feature 29455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479783898 of field osm_id of feature 29456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479784363 of field osm_id of feature 29457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479784364 of field osm_id of feature 29458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479786267 of field osm_id of feature 29459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479786270 of field osm_id of feature 29460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479786275 of field osm_id of feature 29461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479786278 of field osm_id of feature 29462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479788160 of field osm_id of feature 29463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479788161 of field osm_id of feature 29464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479788161 of field osm_id of feature 29465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479789545 of field osm_id of feature 29466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479789546 of field osm_id of feature 29467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479789547 of field osm_id of feature 29468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479789549 of field osm_id of feature 29469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479789550 of field osm_id of feature 29470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479799997 of field osm_id of feature 29471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479803530 of field osm_id of feature 29472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479803902 of field osm_id of feature 29473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479805369 of field osm_id of feature 29474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 479805369 of field osm_id of feature 29475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480116832 of field osm_id of feature 29476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480150315 of field osm_id of feature 29477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480164805 of field osm_id of feature 29478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480164808 of field osm_id of feature 29479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480164809 of field osm_id of feature 29480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480223744 of field osm_id of feature 29481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227403 of field osm_id of feature 29482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227409 of field osm_id of feature 29483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227412 of field osm_id of feature 29484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227416 of field osm_id of feature 29485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227424 of field osm_id of feature 29486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227429 of field osm_id of feature 29487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227432 of field osm_id of feature 29488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227433 of field osm_id of feature 29489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227434 of field osm_id of feature 29490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227676 of field osm_id of feature 29491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480227677 of field osm_id of feature 29492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480228902 of field osm_id of feature 29493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480228903 of field osm_id of feature 29494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480228903 of field osm_id of feature 29495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480229840 of field osm_id of feature 29496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480229841 of field osm_id of feature 29497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480229842 of field osm_id of feature 29498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480229843 of field osm_id of feature 29499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480230146 of field osm_id of feature 29500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480230147 of field osm_id of feature 29501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480230767 of field osm_id of feature 29502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480230768 of field osm_id of feature 29503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480230769 of field osm_id of feature 29504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231135 of field osm_id of feature 29505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231136 of field osm_id of feature 29506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231137 of field osm_id of feature 29507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231138 of field osm_id of feature 29508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231139 of field osm_id of feature 29509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231140 of field osm_id of feature 29510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480231141 of field osm_id of feature 29511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480232181 of field osm_id of feature 29512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480232182 of field osm_id of feature 29513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480232183 of field osm_id of feature 29514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480232184 of field osm_id of feature 29515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480233402 of field osm_id of feature 29516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480233733 of field osm_id of feature 29517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480234561 of field osm_id of feature 29518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480235093 of field osm_id of feature 29519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237011 of field osm_id of feature 29520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237011 of field osm_id of feature 29521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237012 of field osm_id of feature 29522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237013 of field osm_id of feature 29523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237013 of field osm_id of feature 29524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237014 of field osm_id of feature 29525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237015 of field osm_id of feature 29526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237016 of field osm_id of feature 29527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237018 of field osm_id of feature 29528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237019 of field osm_id of feature 29529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237020 of field osm_id of feature 29530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480237021 of field osm_id of feature 29531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480238016 of field osm_id of feature 29532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480238017 of field osm_id of feature 29533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480240569 of field osm_id of feature 29534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480240571 of field osm_id of feature 29535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242548 of field osm_id of feature 29536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242549 of field osm_id of feature 29537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242779 of field osm_id of feature 29538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242780 of field osm_id of feature 29539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242834 of field osm_id of feature 29540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480242834 of field osm_id of feature 29541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480243155 of field osm_id of feature 29542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480243155 of field osm_id of feature 29543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480243156 of field osm_id of feature 29544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480244508 of field osm_id of feature 29545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480244509 of field osm_id of feature 29546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246764 of field osm_id of feature 29547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246765 of field osm_id of feature 29548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246765 of field osm_id of feature 29549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246769 of field osm_id of feature 29550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246770 of field osm_id of feature 29551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246771 of field osm_id of feature 29552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246772 of field osm_id of feature 29553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246773 of field osm_id of feature 29554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480246774 of field osm_id of feature 29555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480247940 of field osm_id of feature 29556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480247942 of field osm_id of feature 29557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480247943 of field osm_id of feature 29558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480248898 of field osm_id of feature 29559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480248903 of field osm_id of feature 29560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480248904 of field osm_id of feature 29561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480248906 of field osm_id of feature 29562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480249392 of field osm_id of feature 29563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480249393 of field osm_id of feature 29564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480249394 of field osm_id of feature 29565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480249395 of field osm_id of feature 29566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480249986 of field osm_id of feature 29567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480250096 of field osm_id of feature 29568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480250097 of field osm_id of feature 29569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480250098 of field osm_id of feature 29570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480250099 of field osm_id of feature 29571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480250100 of field osm_id of feature 29572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252558 of field osm_id of feature 29573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252559 of field osm_id of feature 29574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252560 of field osm_id of feature 29575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252899 of field osm_id of feature 29576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252900 of field osm_id of feature 29577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252901 of field osm_id of feature 29578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252903 of field osm_id of feature 29579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480252903 of field osm_id of feature 29580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255712 of field osm_id of feature 29581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255713 of field osm_id of feature 29582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255714 of field osm_id of feature 29583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255715 of field osm_id of feature 29584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255892 of field osm_id of feature 29585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255893 of field osm_id of feature 29586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255894 of field osm_id of feature 29587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255895 of field osm_id of feature 29588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480255896 of field osm_id of feature 29589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256054 of field osm_id of feature 29590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256073 of field osm_id of feature 29591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256074 of field osm_id of feature 29592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256075 of field osm_id of feature 29593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256076 of field osm_id of feature 29594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256539 of field osm_id of feature 29595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256540 of field osm_id of feature 29596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256541 of field osm_id of feature 29597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256542 of field osm_id of feature 29598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480256543 of field osm_id of feature 29599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257002 of field osm_id of feature 29600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257003 of field osm_id of feature 29601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257004 of field osm_id of feature 29602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257499 of field osm_id of feature 29603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257510 of field osm_id of feature 29604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257511 of field osm_id of feature 29605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257512 of field osm_id of feature 29606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257513 of field osm_id of feature 29607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257794 of field osm_id of feature 29608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257795 of field osm_id of feature 29609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257796 of field osm_id of feature 29610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480257797 of field osm_id of feature 29611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258631 of field osm_id of feature 29612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258632 of field osm_id of feature 29613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258633 of field osm_id of feature 29614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258855 of field osm_id of feature 29615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258856 of field osm_id of feature 29616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258857 of field osm_id of feature 29617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258858 of field osm_id of feature 29618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480258859 of field osm_id of feature 29619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480259660 of field osm_id of feature 29620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480259661 of field osm_id of feature 29621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480259662 of field osm_id of feature 29622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480259663 of field osm_id of feature 29623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260091 of field osm_id of feature 29624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260096 of field osm_id of feature 29625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260099 of field osm_id of feature 29626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260102 of field osm_id of feature 29627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260105 of field osm_id of feature 29628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260110 of field osm_id of feature 29629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260111 of field osm_id of feature 29630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260112 of field osm_id of feature 29631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260113 of field osm_id of feature 29632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260477 of field osm_id of feature 29633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260478 of field osm_id of feature 29634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260479 of field osm_id of feature 29635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260480 of field osm_id of feature 29636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260481 of field osm_id of feature 29637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260482 of field osm_id of feature 29638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260483 of field osm_id of feature 29639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260514 of field osm_id of feature 29640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480260516 of field osm_id of feature 29641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480261028 of field osm_id of feature 29642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480261029 of field osm_id of feature 29643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480261293 of field osm_id of feature 29644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480261356 of field osm_id of feature 29645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480262065 of field osm_id of feature 29646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480262067 of field osm_id of feature 29647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480262069 of field osm_id of feature 29648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480262071 of field osm_id of feature 29649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480262074 of field osm_id of feature 29650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263548 of field osm_id of feature 29651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263551 of field osm_id of feature 29652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263554 of field osm_id of feature 29653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263557 of field osm_id of feature 29654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263560 of field osm_id of feature 29655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263563 of field osm_id of feature 29656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263565 of field osm_id of feature 29657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263568 of field osm_id of feature 29658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263570 of field osm_id of feature 29659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263572 of field osm_id of feature 29660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480263575 of field osm_id of feature 29661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480267750 of field osm_id of feature 29662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480268400 of field osm_id of feature 29663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480268400 of field osm_id of feature 29664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480268401 of field osm_id of feature 29665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269038 of field osm_id of feature 29666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269039 of field osm_id of feature 29667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269039 of field osm_id of feature 29668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269041 of field osm_id of feature 29669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269042 of field osm_id of feature 29670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480269042 of field osm_id of feature 29671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480271939 of field osm_id of feature 29672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480271940 of field osm_id of feature 29673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480271941 of field osm_id of feature 29674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480272744 of field osm_id of feature 29675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273053 of field osm_id of feature 29676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273054 of field osm_id of feature 29677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273055 of field osm_id of feature 29678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273056 of field osm_id of feature 29679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273058 of field osm_id of feature 29680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273059 of field osm_id of feature 29681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273060 of field osm_id of feature 29682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273060 of field osm_id of feature 29683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273061 of field osm_id of feature 29684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480273062 of field osm_id of feature 29685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274564 of field osm_id of feature 29686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274567 of field osm_id of feature 29687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274570 of field osm_id of feature 29688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274573 of field osm_id of feature 29689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274573 of field osm_id of feature 29690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274576 of field osm_id of feature 29691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274579 of field osm_id of feature 29692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274582 of field osm_id of feature 29693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274585 of field osm_id of feature 29694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274591 of field osm_id of feature 29695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274592 of field osm_id of feature 29696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274593 of field osm_id of feature 29697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480274594 of field osm_id of feature 29698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275105 of field osm_id of feature 29699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275407 of field osm_id of feature 29700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275408 of field osm_id of feature 29701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275408 of field osm_id of feature 29702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275410 of field osm_id of feature 29703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275903 of field osm_id of feature 29704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480275904 of field osm_id of feature 29705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480276769 of field osm_id of feature 29706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480279355 of field osm_id of feature 29707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480279356 of field osm_id of feature 29708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480280172 of field osm_id of feature 29709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480280666 of field osm_id of feature 29710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480280667 of field osm_id of feature 29711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480280668 of field osm_id of feature 29712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480280669 of field osm_id of feature 29713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480281892 of field osm_id of feature 29714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480283629 of field osm_id of feature 29715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480284946 of field osm_id of feature 29716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480284946 of field osm_id of feature 29717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480288941 of field osm_id of feature 29718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480288942 of field osm_id of feature 29719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480288942 of field osm_id of feature 29720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480288943 of field osm_id of feature 29721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480293777 of field osm_id of feature 29722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480296643 of field osm_id of feature 29723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480296643 of field osm_id of feature 29724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480300071 of field osm_id of feature 29725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480300071 of field osm_id of feature 29726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480300072 of field osm_id of feature 29727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480301403 of field osm_id of feature 29728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480303495 of field osm_id of feature 29729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480306311 of field osm_id of feature 29730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480306312 of field osm_id of feature 29731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480306313 of field osm_id of feature 29732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480306314 of field osm_id of feature 29733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480308246 of field osm_id of feature 29734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480424615 of field osm_id of feature 29735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480424616 of field osm_id of feature 29736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425899 of field osm_id of feature 29737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425900 of field osm_id of feature 29738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425902 of field osm_id of feature 29739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425904 of field osm_id of feature 29740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425907 of field osm_id of feature 29741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425907 of field osm_id of feature 29742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480425910 of field osm_id of feature 29743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480427090 of field osm_id of feature 29744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480427091 of field osm_id of feature 29745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480427092 of field osm_id of feature 29746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428594 of field osm_id of feature 29747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428595 of field osm_id of feature 29748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428596 of field osm_id of feature 29749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428597 of field osm_id of feature 29750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428598 of field osm_id of feature 29751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428599 of field osm_id of feature 29752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428600 of field osm_id of feature 29753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428601 of field osm_id of feature 29754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428602 of field osm_id of feature 29755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428603 of field osm_id of feature 29756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428604 of field osm_id of feature 29757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428604 of field osm_id of feature 29758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428605 of field osm_id of feature 29759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428606 of field osm_id of feature 29760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428607 of field osm_id of feature 29761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480428608 of field osm_id of feature 29762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480430684 of field osm_id of feature 29763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480430685 of field osm_id of feature 29764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480430685 of field osm_id of feature 29765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480433128 of field osm_id of feature 29766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480444132 of field osm_id of feature 29767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480452668 of field osm_id of feature 29768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480452669 of field osm_id of feature 29769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453193 of field osm_id of feature 29770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453194 of field osm_id of feature 29771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453195 of field osm_id of feature 29772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453195 of field osm_id of feature 29773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453196 of field osm_id of feature 29774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453197 of field osm_id of feature 29775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453198 of field osm_id of feature 29776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453611 of field osm_id of feature 29777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453612 of field osm_id of feature 29778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453614 of field osm_id of feature 29779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480453615 of field osm_id of feature 29780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455204 of field osm_id of feature 29781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455205 of field osm_id of feature 29782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455206 of field osm_id of feature 29783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455207 of field osm_id of feature 29784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455208 of field osm_id of feature 29785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455209 of field osm_id of feature 29786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455210 of field osm_id of feature 29787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455211 of field osm_id of feature 29788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455212 of field osm_id of feature 29789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455528 of field osm_id of feature 29790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455529 of field osm_id of feature 29791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480455673 of field osm_id of feature 29792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456010 of field osm_id of feature 29793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456011 of field osm_id of feature 29794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456750 of field osm_id of feature 29795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456751 of field osm_id of feature 29796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456752 of field osm_id of feature 29797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456753 of field osm_id of feature 29798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456844 of field osm_id of feature 29799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456848 of field osm_id of feature 29800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456851 of field osm_id of feature 29801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480456854 of field osm_id of feature 29802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480457626 of field osm_id of feature 29803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480457628 of field osm_id of feature 29804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480458895 of field osm_id of feature 29805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480458896 of field osm_id of feature 29806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480458897 of field osm_id of feature 29807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480458898 of field osm_id of feature 29808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480458899 of field osm_id of feature 29809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459777 of field osm_id of feature 29810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459779 of field osm_id of feature 29811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459779 of field osm_id of feature 29812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459782 of field osm_id of feature 29813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459785 of field osm_id of feature 29814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459788 of field osm_id of feature 29815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459792 of field osm_id of feature 29816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459795 of field osm_id of feature 29817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480459799 of field osm_id of feature 29818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480460559 of field osm_id of feature 29819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480460560 of field osm_id of feature 29820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480461586 of field osm_id of feature 29821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480461588 of field osm_id of feature 29822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467925 of field osm_id of feature 29823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467928 of field osm_id of feature 29824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467931 of field osm_id of feature 29825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467932 of field osm_id of feature 29826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467933 of field osm_id of feature 29827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480467934 of field osm_id of feature 29828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480468902 of field osm_id of feature 29829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480472258 of field osm_id of feature 29830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480472259 of field osm_id of feature 29831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480473455 of field osm_id of feature 29832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480473458 of field osm_id of feature 29833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480475348 of field osm_id of feature 29834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480475349 of field osm_id of feature 29835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480477676 of field osm_id of feature 29836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480477677 of field osm_id of feature 29837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480477678 of field osm_id of feature 29838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480481039 of field osm_id of feature 29839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480481045 of field osm_id of feature 29840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480483640 of field osm_id of feature 29841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480483641 of field osm_id of feature 29842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480483642 of field osm_id of feature 29843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480483643 of field osm_id of feature 29844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480487935 of field osm_id of feature 29845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488522 of field osm_id of feature 29846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488523 of field osm_id of feature 29847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488524 of field osm_id of feature 29848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488525 of field osm_id of feature 29849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488526 of field osm_id of feature 29850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488527 of field osm_id of feature 29851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488529 of field osm_id of feature 29852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488530 of field osm_id of feature 29853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488531 of field osm_id of feature 29854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488532 of field osm_id of feature 29855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488534 of field osm_id of feature 29856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488535 of field osm_id of feature 29857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488536 of field osm_id of feature 29858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488537 of field osm_id of feature 29859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480488538 of field osm_id of feature 29860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490540 of field osm_id of feature 29861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490541 of field osm_id of feature 29862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490542 of field osm_id of feature 29863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490544 of field osm_id of feature 29864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490545 of field osm_id of feature 29865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490546 of field osm_id of feature 29866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490547 of field osm_id of feature 29867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490548 of field osm_id of feature 29868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490549 of field osm_id of feature 29869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490551 of field osm_id of feature 29870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490552 of field osm_id of feature 29871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490553 of field osm_id of feature 29872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480490554 of field osm_id of feature 29873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492003 of field osm_id of feature 29874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492006 of field osm_id of feature 29875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492088 of field osm_id of feature 29876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492092 of field osm_id of feature 29877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492093 of field osm_id of feature 29878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492094 of field osm_id of feature 29879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480492914 of field osm_id of feature 29880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480494902 of field osm_id of feature 29881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480494903 of field osm_id of feature 29882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480494904 of field osm_id of feature 29883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480494905 of field osm_id of feature 29884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480494906 of field osm_id of feature 29885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480495643 of field osm_id of feature 29886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480495644 of field osm_id of feature 29887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480495645 of field osm_id of feature 29888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480497507 of field osm_id of feature 29889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480499389 of field osm_id of feature 29890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480499392 of field osm_id of feature 29891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502814 of field osm_id of feature 29892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502815 of field osm_id of feature 29893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502816 of field osm_id of feature 29894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502817 of field osm_id of feature 29895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502818 of field osm_id of feature 29896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480502819 of field osm_id of feature 29897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503318 of field osm_id of feature 29898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503319 of field osm_id of feature 29899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503320 of field osm_id of feature 29900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503321 of field osm_id of feature 29901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503322 of field osm_id of feature 29902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480503323 of field osm_id of feature 29903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480504074 of field osm_id of feature 29904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480504993 of field osm_id of feature 29905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480504994 of field osm_id of feature 29906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480505467 of field osm_id of feature 29907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480505468 of field osm_id of feature 29908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480506251 of field osm_id of feature 29909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480507309 of field osm_id of feature 29910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480507311 of field osm_id of feature 29911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480508121 of field osm_id of feature 29912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480508969 of field osm_id of feature 29913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480508970 of field osm_id of feature 29914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480509651 of field osm_id of feature 29915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480509658 of field osm_id of feature 29916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480509661 of field osm_id of feature 29917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511018 of field osm_id of feature 29918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511019 of field osm_id of feature 29919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511020 of field osm_id of feature 29920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511021 of field osm_id of feature 29921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511084 of field osm_id of feature 29922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511089 of field osm_id of feature 29923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480511094 of field osm_id of feature 29924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480514799 of field osm_id of feature 29925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480514803 of field osm_id of feature 29926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480516824 of field osm_id of feature 29927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480516828 of field osm_id of feature 29928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517946 of field osm_id of feature 29929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517947 of field osm_id of feature 29930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517948 of field osm_id of feature 29931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517949 of field osm_id of feature 29932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517950 of field osm_id of feature 29933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480517951 of field osm_id of feature 29934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518551 of field osm_id of feature 29935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518562 of field osm_id of feature 29936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518569 of field osm_id of feature 29937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518575 of field osm_id of feature 29938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518840 of field osm_id of feature 29939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518841 of field osm_id of feature 29940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518842 of field osm_id of feature 29941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518843 of field osm_id of feature 29942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480518844 of field osm_id of feature 29943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520066 of field osm_id of feature 29944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520068 of field osm_id of feature 29945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520071 of field osm_id of feature 29946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520609 of field osm_id of feature 29947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520610 of field osm_id of feature 29948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520611 of field osm_id of feature 29949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480520612 of field osm_id of feature 29950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480522598 of field osm_id of feature 29951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525439 of field osm_id of feature 29952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525440 of field osm_id of feature 29953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525440 of field osm_id of feature 29954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525441 of field osm_id of feature 29955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525442 of field osm_id of feature 29956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525443 of field osm_id of feature 29957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525446 of field osm_id of feature 29958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525447 of field osm_id of feature 29959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525448 of field osm_id of feature 29960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525449 of field osm_id of feature 29961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525450 of field osm_id of feature 29962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525641 of field osm_id of feature 29963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525642 of field osm_id of feature 29964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480525643 of field osm_id of feature 29965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480526510 of field osm_id of feature 29966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480526846 of field osm_id of feature 29967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480526848 of field osm_id of feature 29968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480526850 of field osm_id of feature 29969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480526852 of field osm_id of feature 29970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528223 of field osm_id of feature 29971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528224 of field osm_id of feature 29972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528225 of field osm_id of feature 29973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528226 of field osm_id of feature 29974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528227 of field osm_id of feature 29975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528228 of field osm_id of feature 29976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528229 of field osm_id of feature 29977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528230 of field osm_id of feature 29978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528230 of field osm_id of feature 29979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528231 of field osm_id of feature 29980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480528617 of field osm_id of feature 29981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480529206 of field osm_id of feature 29982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480529208 of field osm_id of feature 29983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480529210 of field osm_id of feature 29984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480529211 of field osm_id of feature 29985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480529417 of field osm_id of feature 29986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530073 of field osm_id of feature 29987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530074 of field osm_id of feature 29988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530441 of field osm_id of feature 29989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530442 of field osm_id of feature 29990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530757 of field osm_id of feature 29991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530758 of field osm_id of feature 29992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530759 of field osm_id of feature 29993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530760 of field osm_id of feature 29994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530761 of field osm_id of feature 29995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530762 of field osm_id of feature 29996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530763 of field osm_id of feature 29997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530764 of field osm_id of feature 29998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530765 of field osm_id of feature 29999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530766 of field osm_id of feature 30000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530767 of field osm_id of feature 30001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530768 of field osm_id of feature 30002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480530769 of field osm_id of feature 30003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533009 of field osm_id of feature 30004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533009 of field osm_id of feature 30005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533010 of field osm_id of feature 30006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533011 of field osm_id of feature 30007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533012 of field osm_id of feature 30008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533012 of field osm_id of feature 30009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533013 of field osm_id of feature 30010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533014 of field osm_id of feature 30011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533015 of field osm_id of feature 30012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533016 of field osm_id of feature 30013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533018 of field osm_id of feature 30014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533129 of field osm_id of feature 30015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533131 of field osm_id of feature 30016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533132 of field osm_id of feature 30017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533133 of field osm_id of feature 30018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533134 of field osm_id of feature 30019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533135 of field osm_id of feature 30020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533136 of field osm_id of feature 30021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480533137 of field osm_id of feature 30022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534287 of field osm_id of feature 30023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534288 of field osm_id of feature 30024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534289 of field osm_id of feature 30025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534290 of field osm_id of feature 30026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534291 of field osm_id of feature 30027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534292 of field osm_id of feature 30028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534293 of field osm_id of feature 30029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480534937 of field osm_id of feature 30030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480535389 of field osm_id of feature 30031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480535390 of field osm_id of feature 30032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480536076 of field osm_id of feature 30033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480536077 of field osm_id of feature 30034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480536418 of field osm_id of feature 30035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480543033 of field osm_id of feature 30036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480543034 of field osm_id of feature 30037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480645047 of field osm_id of feature 30038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480645048 of field osm_id of feature 30039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480645049 of field osm_id of feature 30040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480645886 of field osm_id of feature 30041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480650716 of field osm_id of feature 30042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652462 of field osm_id of feature 30043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652462 of field osm_id of feature 30044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652467 of field osm_id of feature 30045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652472 of field osm_id of feature 30046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652472 of field osm_id of feature 30047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480652475 of field osm_id of feature 30048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654594 of field osm_id of feature 30049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654597 of field osm_id of feature 30050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654600 of field osm_id of feature 30051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654600 of field osm_id of feature 30052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654603 of field osm_id of feature 30053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480654605 of field osm_id of feature 30054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655529 of field osm_id of feature 30055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655530 of field osm_id of feature 30056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655531 of field osm_id of feature 30057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655532 of field osm_id of feature 30058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655533 of field osm_id of feature 30059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655534 of field osm_id of feature 30060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480655535 of field osm_id of feature 30061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480656763 of field osm_id of feature 30062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480656764 of field osm_id of feature 30063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480656765 of field osm_id of feature 30064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657110 of field osm_id of feature 30065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657111 of field osm_id of feature 30066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657112 of field osm_id of feature 30067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657113 of field osm_id of feature 30068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657114 of field osm_id of feature 30069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657115 of field osm_id of feature 30070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657116 of field osm_id of feature 30071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657117 of field osm_id of feature 30072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657118 of field osm_id of feature 30073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657518 of field osm_id of feature 30074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657519 of field osm_id of feature 30075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657520 of field osm_id of feature 30076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657789 of field osm_id of feature 30077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657791 of field osm_id of feature 30078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657793 of field osm_id of feature 30079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657795 of field osm_id of feature 30080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657797 of field osm_id of feature 30081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480657799 of field osm_id of feature 30082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480658058 of field osm_id of feature 30083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480658059 of field osm_id of feature 30084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480658060 of field osm_id of feature 30085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480658061 of field osm_id of feature 30086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480659104 of field osm_id of feature 30087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480659108 of field osm_id of feature 30088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480659110 of field osm_id of feature 30089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480659113 of field osm_id of feature 30090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664346 of field osm_id of feature 30091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664347 of field osm_id of feature 30092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664348 of field osm_id of feature 30093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664349 of field osm_id of feature 30094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664349 of field osm_id of feature 30095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664350 of field osm_id of feature 30096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664351 of field osm_id of feature 30097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664352 of field osm_id of feature 30098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664352 of field osm_id of feature 30099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664353 of field osm_id of feature 30100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664354 of field osm_id of feature 30101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664354 of field osm_id of feature 30102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664355 of field osm_id of feature 30103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664356 of field osm_id of feature 30104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480664356 of field osm_id of feature 30105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671238 of field osm_id of feature 30106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671243 of field osm_id of feature 30107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671247 of field osm_id of feature 30108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671251 of field osm_id of feature 30109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671255 of field osm_id of feature 30110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671260 of field osm_id of feature 30111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671267 of field osm_id of feature 30112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671271 of field osm_id of feature 30113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671274 of field osm_id of feature 30114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671349 of field osm_id of feature 30115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671350 of field osm_id of feature 30116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671351 of field osm_id of feature 30117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480671351 of field osm_id of feature 30118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672928 of field osm_id of feature 30119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672930 of field osm_id of feature 30120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672933 of field osm_id of feature 30121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672937 of field osm_id of feature 30122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672941 of field osm_id of feature 30123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480672944 of field osm_id of feature 30124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673399 of field osm_id of feature 30125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673400 of field osm_id of feature 30126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673401 of field osm_id of feature 30127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673402 of field osm_id of feature 30128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673525 of field osm_id of feature 30129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673823 of field osm_id of feature 30130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673824 of field osm_id of feature 30131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480673825 of field osm_id of feature 30132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674081 of field osm_id of feature 30133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674434 of field osm_id of feature 30134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674438 of field osm_id of feature 30135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674439 of field osm_id of feature 30136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674442 of field osm_id of feature 30137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674445 of field osm_id of feature 30138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674448 of field osm_id of feature 30139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674772 of field osm_id of feature 30140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480674773 of field osm_id of feature 30141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480675433 of field osm_id of feature 30142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480675434 of field osm_id of feature 30143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480675435 of field osm_id of feature 30144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480675436 of field osm_id of feature 30145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676155 of field osm_id of feature 30146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676156 of field osm_id of feature 30147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676157 of field osm_id of feature 30148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676588 of field osm_id of feature 30149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676589 of field osm_id of feature 30150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676590 of field osm_id of feature 30151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676591 of field osm_id of feature 30152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676592 of field osm_id of feature 30153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676593 of field osm_id of feature 30154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676594 of field osm_id of feature 30155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676595 of field osm_id of feature 30156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676596 of field osm_id of feature 30157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480676597 of field osm_id of feature 30158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677348 of field osm_id of feature 30159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677349 of field osm_id of feature 30160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677349 of field osm_id of feature 30161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677351 of field osm_id of feature 30162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677668 of field osm_id of feature 30163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677958 of field osm_id of feature 30164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677959 of field osm_id of feature 30165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677960 of field osm_id of feature 30166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677961 of field osm_id of feature 30167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677961 of field osm_id of feature 30168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480677962 of field osm_id of feature 30169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678201 of field osm_id of feature 30170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678202 of field osm_id of feature 30171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678204 of field osm_id of feature 30172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678206 of field osm_id of feature 30173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678210 of field osm_id of feature 30174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480678211 of field osm_id of feature 30175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681005 of field osm_id of feature 30176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681006 of field osm_id of feature 30177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681007 of field osm_id of feature 30178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681009 of field osm_id of feature 30179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681010 of field osm_id of feature 30180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681011 of field osm_id of feature 30181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681012 of field osm_id of feature 30182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681013 of field osm_id of feature 30183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681014 of field osm_id of feature 30184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681015 of field osm_id of feature 30185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681016 of field osm_id of feature 30186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681017 of field osm_id of feature 30187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681848 of field osm_id of feature 30188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681849 of field osm_id of feature 30189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681850 of field osm_id of feature 30190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681881 of field osm_id of feature 30191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681882 of field osm_id of feature 30192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681882 of field osm_id of feature 30193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681883 of field osm_id of feature 30194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681883 of field osm_id of feature 30195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681884 of field osm_id of feature 30196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681885 of field osm_id of feature 30197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681886 of field osm_id of feature 30198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681887 of field osm_id of feature 30199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681888 of field osm_id of feature 30200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480681889 of field osm_id of feature 30201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682744 of field osm_id of feature 30202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682745 of field osm_id of feature 30203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682745 of field osm_id of feature 30204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682746 of field osm_id of feature 30205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682746 of field osm_id of feature 30206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480682747 of field osm_id of feature 30207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683275 of field osm_id of feature 30208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683276 of field osm_id of feature 30209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683277 of field osm_id of feature 30210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683278 of field osm_id of feature 30211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683279 of field osm_id of feature 30212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683280 of field osm_id of feature 30213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683281 of field osm_id of feature 30214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683282 of field osm_id of feature 30215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683283 of field osm_id of feature 30216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683284 of field osm_id of feature 30217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683285 of field osm_id of feature 30218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683353 of field osm_id of feature 30219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683354 of field osm_id of feature 30220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683355 of field osm_id of feature 30221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683660 of field osm_id of feature 30222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683661 of field osm_id of feature 30223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683661 of field osm_id of feature 30224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683662 of field osm_id of feature 30225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683663 of field osm_id of feature 30226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683987 of field osm_id of feature 30227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683988 of field osm_id of feature 30228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683989 of field osm_id of feature 30229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683990 of field osm_id of feature 30230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480683999 of field osm_id of feature 30231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684000 of field osm_id of feature 30232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684001 of field osm_id of feature 30233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684002 of field osm_id of feature 30234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684003 of field osm_id of feature 30235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684004 of field osm_id of feature 30236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684005 of field osm_id of feature 30237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684006 of field osm_id of feature 30238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684172 of field osm_id of feature 30239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684173 of field osm_id of feature 30240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684174 of field osm_id of feature 30241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684175 of field osm_id of feature 30242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684176 of field osm_id of feature 30243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684177 of field osm_id of feature 30244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684178 of field osm_id of feature 30245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684481 of field osm_id of feature 30246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684482 of field osm_id of feature 30247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684483 of field osm_id of feature 30248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684484 of field osm_id of feature 30249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684542 of field osm_id of feature 30250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684543 of field osm_id of feature 30251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684543 of field osm_id of feature 30252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684544 of field osm_id of feature 30253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684545 of field osm_id of feature 30254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684546 of field osm_id of feature 30255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684572 of field osm_id of feature 30256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684678 of field osm_id of feature 30257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684679 of field osm_id of feature 30258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684680 of field osm_id of feature 30259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480684681 of field osm_id of feature 30260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685023 of field osm_id of feature 30261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685024 of field osm_id of feature 30262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685189 of field osm_id of feature 30263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685190 of field osm_id of feature 30264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685191 of field osm_id of feature 30265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685209 of field osm_id of feature 30266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685856 of field osm_id of feature 30267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685857 of field osm_id of feature 30268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685858 of field osm_id of feature 30269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480685859 of field osm_id of feature 30270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480686184 of field osm_id of feature 30271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480686185 of field osm_id of feature 30272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480687897 of field osm_id of feature 30273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480688672 of field osm_id of feature 30274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480688673 of field osm_id of feature 30275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689015 of field osm_id of feature 30276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689016 of field osm_id of feature 30277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689017 of field osm_id of feature 30278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689018 of field osm_id of feature 30279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689019 of field osm_id of feature 30280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689024 of field osm_id of feature 30281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689025 of field osm_id of feature 30282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480689025 of field osm_id of feature 30283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480691077 of field osm_id of feature 30284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480691078 of field osm_id of feature 30285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692064 of field osm_id of feature 30286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692065 of field osm_id of feature 30287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692066 of field osm_id of feature 30288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692067 of field osm_id of feature 30289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692068 of field osm_id of feature 30290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692069 of field osm_id of feature 30291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692070 of field osm_id of feature 30292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692071 of field osm_id of feature 30293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692072 of field osm_id of feature 30294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692073 of field osm_id of feature 30295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692074 of field osm_id of feature 30296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692075 of field osm_id of feature 30297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692076 of field osm_id of feature 30298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692077 of field osm_id of feature 30299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692078 of field osm_id of feature 30300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692079 of field osm_id of feature 30301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692080 of field osm_id of feature 30302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692081 of field osm_id of feature 30303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692082 of field osm_id of feature 30304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692083 of field osm_id of feature 30305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692084 of field osm_id of feature 30306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692085 of field osm_id of feature 30307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692086 of field osm_id of feature 30308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692086 of field osm_id of feature 30309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692087 of field osm_id of feature 30310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692088 of field osm_id of feature 30311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692089 of field osm_id of feature 30312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692090 of field osm_id of feature 30313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692091 of field osm_id of feature 30314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692092 of field osm_id of feature 30315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692093 of field osm_id of feature 30316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692094 of field osm_id of feature 30317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692095 of field osm_id of feature 30318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692096 of field osm_id of feature 30319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692097 of field osm_id of feature 30320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692098 of field osm_id of feature 30321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692099 of field osm_id of feature 30322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692100 of field osm_id of feature 30323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692101 of field osm_id of feature 30324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692102 of field osm_id of feature 30325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692103 of field osm_id of feature 30326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692104 of field osm_id of feature 30327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692105 of field osm_id of feature 30328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692106 of field osm_id of feature 30329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692107 of field osm_id of feature 30330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692108 of field osm_id of feature 30331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692109 of field osm_id of feature 30332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692110 of field osm_id of feature 30333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692111 of field osm_id of feature 30334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480692112 of field osm_id of feature 30335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480695877 of field osm_id of feature 30336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696182 of field osm_id of feature 30337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696183 of field osm_id of feature 30338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696184 of field osm_id of feature 30339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696549 of field osm_id of feature 30340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696550 of field osm_id of feature 30341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480696552 of field osm_id of feature 30342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697170 of field osm_id of feature 30343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697609 of field osm_id of feature 30344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697610 of field osm_id of feature 30345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697611 of field osm_id of feature 30346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697612 of field osm_id of feature 30347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697615 of field osm_id of feature 30348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697616 of field osm_id of feature 30349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697843 of field osm_id of feature 30350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480697844 of field osm_id of feature 30351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698326 of field osm_id of feature 30352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698327 of field osm_id of feature 30353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698328 of field osm_id of feature 30354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698329 of field osm_id of feature 30355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698846 of field osm_id of feature 30356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698849 of field osm_id of feature 30357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480698851 of field osm_id of feature 30358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480699267 of field osm_id of feature 30359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480699271 of field osm_id of feature 30360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480699272 of field osm_id of feature 30361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480699273 of field osm_id of feature 30362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480699274 of field osm_id of feature 30363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701027 of field osm_id of feature 30364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701028 of field osm_id of feature 30365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701032 of field osm_id of feature 30366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701033 of field osm_id of feature 30367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701034 of field osm_id of feature 30368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480701035 of field osm_id of feature 30369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480702051 of field osm_id of feature 30370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480702052 of field osm_id of feature 30371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703492 of field osm_id of feature 30372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703496 of field osm_id of feature 30373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703500 of field osm_id of feature 30374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703501 of field osm_id of feature 30375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703502 of field osm_id of feature 30376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480703503 of field osm_id of feature 30377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704267 of field osm_id of feature 30378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704271 of field osm_id of feature 30379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704272 of field osm_id of feature 30380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704273 of field osm_id of feature 30381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704274 of field osm_id of feature 30382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480704545 of field osm_id of feature 30383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480706661 of field osm_id of feature 30384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480706663 of field osm_id of feature 30385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480706665 of field osm_id of feature 30386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480707999 of field osm_id of feature 30387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708000 of field osm_id of feature 30388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708001 of field osm_id of feature 30389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708414 of field osm_id of feature 30390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708416 of field osm_id of feature 30391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708420 of field osm_id of feature 30392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708424 of field osm_id of feature 30393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708684 of field osm_id of feature 30394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480708685 of field osm_id of feature 30395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709349 of field osm_id of feature 30396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709350 of field osm_id of feature 30397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709351 of field osm_id of feature 30398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709352 of field osm_id of feature 30399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709353 of field osm_id of feature 30400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480709354 of field osm_id of feature 30401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480710288 of field osm_id of feature 30402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480710289 of field osm_id of feature 30403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480710290 of field osm_id of feature 30404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480710291 of field osm_id of feature 30405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480712850 of field osm_id of feature 30406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480712851 of field osm_id of feature 30407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480712852 of field osm_id of feature 30408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480712854 of field osm_id of feature 30409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480720871 of field osm_id of feature 30410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480720872 of field osm_id of feature 30411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480722337 of field osm_id of feature 30412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480722341 of field osm_id of feature 30413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480722344 of field osm_id of feature 30414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480723527 of field osm_id of feature 30415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480723529 of field osm_id of feature 30416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480724596 of field osm_id of feature 30417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480724598 of field osm_id of feature 30418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480725574 of field osm_id of feature 30419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480725620 of field osm_id of feature 30420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480725621 of field osm_id of feature 30421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480727062 of field osm_id of feature 30422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480727063 of field osm_id of feature 30423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480727064 of field osm_id of feature 30424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480727065 of field osm_id of feature 30425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731747 of field osm_id of feature 30426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731749 of field osm_id of feature 30427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731749 of field osm_id of feature 30428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731775 of field osm_id of feature 30429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731778 of field osm_id of feature 30430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731781 of field osm_id of feature 30431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480731783 of field osm_id of feature 30432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480733940 of field osm_id of feature 30433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480733941 of field osm_id of feature 30434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480734049 of field osm_id of feature 30435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480734050 of field osm_id of feature 30436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480734051 of field osm_id of feature 30437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480734815 of field osm_id of feature 30438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480739385 of field osm_id of feature 30439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480739386 of field osm_id of feature 30440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480739387 of field osm_id of feature 30441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740156 of field osm_id of feature 30442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740331 of field osm_id of feature 30443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740332 of field osm_id of feature 30444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740347 of field osm_id of feature 30445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740349 of field osm_id of feature 30446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740350 of field osm_id of feature 30447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740351 of field osm_id of feature 30448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740353 of field osm_id of feature 30449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740355 of field osm_id of feature 30450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740357 of field osm_id of feature 30451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740361 of field osm_id of feature 30452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740368 of field osm_id of feature 30453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740369 of field osm_id of feature 30454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740370 of field osm_id of feature 30455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740371 of field osm_id of feature 30456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740374 of field osm_id of feature 30457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740573 of field osm_id of feature 30458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740574 of field osm_id of feature 30459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740575 of field osm_id of feature 30460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740576 of field osm_id of feature 30461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480740577 of field osm_id of feature 30462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742352 of field osm_id of feature 30463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742353 of field osm_id of feature 30464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742775 of field osm_id of feature 30465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742776 of field osm_id of feature 30466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742777 of field osm_id of feature 30467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480742778 of field osm_id of feature 30468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743245 of field osm_id of feature 30469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743510 of field osm_id of feature 30470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743513 of field osm_id of feature 30471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743513 of field osm_id of feature 30472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743515 of field osm_id of feature 30473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743518 of field osm_id of feature 30474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743521 of field osm_id of feature 30475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743524 of field osm_id of feature 30476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743529 of field osm_id of feature 30477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743535 of field osm_id of feature 30478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743540 of field osm_id of feature 30479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743541 of field osm_id of feature 30480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743543 of field osm_id of feature 30481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743580 of field osm_id of feature 30482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743581 of field osm_id of feature 30483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743582 of field osm_id of feature 30484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743583 of field osm_id of feature 30485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743583 of field osm_id of feature 30486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743585 of field osm_id of feature 30487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743585 of field osm_id of feature 30488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743586 of field osm_id of feature 30489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743588 of field osm_id of feature 30490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743588 of field osm_id of feature 30491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743589 of field osm_id of feature 30492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743988 of field osm_id of feature 30493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743989 of field osm_id of feature 30494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743990 of field osm_id of feature 30495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743991 of field osm_id of feature 30496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743991 of field osm_id of feature 30497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743995 of field osm_id of feature 30498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743996 of field osm_id of feature 30499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743997 of field osm_id of feature 30500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743998 of field osm_id of feature 30501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480743998 of field osm_id of feature 30502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744133 of field osm_id of feature 30503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744134 of field osm_id of feature 30504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744135 of field osm_id of feature 30505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744136 of field osm_id of feature 30506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744750 of field osm_id of feature 30507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744752 of field osm_id of feature 30508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744753 of field osm_id of feature 30509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744754 of field osm_id of feature 30510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744755 of field osm_id of feature 30511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480744755 of field osm_id of feature 30512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746019 of field osm_id of feature 30513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746025 of field osm_id of feature 30514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746650 of field osm_id of feature 30515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746651 of field osm_id of feature 30516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746652 of field osm_id of feature 30517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746653 of field osm_id of feature 30518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746654 of field osm_id of feature 30519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746655 of field osm_id of feature 30520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746656 of field osm_id of feature 30521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746657 of field osm_id of feature 30522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746658 of field osm_id of feature 30523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746659 of field osm_id of feature 30524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480746660 of field osm_id of feature 30525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747901 of field osm_id of feature 30526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747902 of field osm_id of feature 30527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747903 of field osm_id of feature 30528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747906 of field osm_id of feature 30529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747909 of field osm_id of feature 30530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480747910 of field osm_id of feature 30531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748362 of field osm_id of feature 30532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748363 of field osm_id of feature 30533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748364 of field osm_id of feature 30534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748365 of field osm_id of feature 30535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748366 of field osm_id of feature 30536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748367 of field osm_id of feature 30537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748368 of field osm_id of feature 30538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748369 of field osm_id of feature 30539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748370 of field osm_id of feature 30540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748371 of field osm_id of feature 30541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748530 of field osm_id of feature 30542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748965 of field osm_id of feature 30543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480748966 of field osm_id of feature 30544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749002 of field osm_id of feature 30545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749004 of field osm_id of feature 30546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749005 of field osm_id of feature 30547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749006 of field osm_id of feature 30548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749007 of field osm_id of feature 30549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749008 of field osm_id of feature 30550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749009 of field osm_id of feature 30551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749010 of field osm_id of feature 30552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749011 of field osm_id of feature 30553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749012 of field osm_id of feature 30554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749315 of field osm_id of feature 30555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749316 of field osm_id of feature 30556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749317 of field osm_id of feature 30557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749318 of field osm_id of feature 30558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749319 of field osm_id of feature 30559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749319 of field osm_id of feature 30560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749320 of field osm_id of feature 30561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749321 of field osm_id of feature 30562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749321 of field osm_id of feature 30563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480749322 of field osm_id of feature 30564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750141 of field osm_id of feature 30565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750142 of field osm_id of feature 30566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750143 of field osm_id of feature 30567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750144 of field osm_id of feature 30568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750145 of field osm_id of feature 30569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750146 of field osm_id of feature 30570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750147 of field osm_id of feature 30571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750148 of field osm_id of feature 30572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750149 of field osm_id of feature 30573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750947 of field osm_id of feature 30574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480750947 of field osm_id of feature 30575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480751648 of field osm_id of feature 30576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480751649 of field osm_id of feature 30577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480752340 of field osm_id of feature 30578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480752341 of field osm_id of feature 30579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480755078 of field osm_id of feature 30580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480757015 of field osm_id of feature 30581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480758096 of field osm_id of feature 30582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480758097 of field osm_id of feature 30583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480760742 of field osm_id of feature 30584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480760742 of field osm_id of feature 30585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480761127 of field osm_id of feature 30586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480761239 of field osm_id of feature 30587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480761558 of field osm_id of feature 30588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480761670 of field osm_id of feature 30589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480848315 of field osm_id of feature 30590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480848317 of field osm_id of feature 30591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480848319 of field osm_id of feature 30592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480848321 of field osm_id of feature 30593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480859372 of field osm_id of feature 30594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480859373 of field osm_id of feature 30595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866573 of field osm_id of feature 30596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866574 of field osm_id of feature 30597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866575 of field osm_id of feature 30598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866576 of field osm_id of feature 30599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866577 of field osm_id of feature 30600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866578 of field osm_id of feature 30601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866579 of field osm_id of feature 30602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866980 of field osm_id of feature 30603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866981 of field osm_id of feature 30604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480866982 of field osm_id of feature 30605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480871261 of field osm_id of feature 30606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480871262 of field osm_id of feature 30607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480871263 of field osm_id of feature 30608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480871264 of field osm_id of feature 30609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872813 of field osm_id of feature 30610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872814 of field osm_id of feature 30611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872815 of field osm_id of feature 30612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872816 of field osm_id of feature 30613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872816 of field osm_id of feature 30614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872816 of field osm_id of feature 30615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872817 of field osm_id of feature 30616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872818 of field osm_id of feature 30617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480872820 of field osm_id of feature 30618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480873750 of field osm_id of feature 30619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480873751 of field osm_id of feature 30620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874183 of field osm_id of feature 30621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874186 of field osm_id of feature 30622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874189 of field osm_id of feature 30623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874189 of field osm_id of feature 30624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874189 of field osm_id of feature 30625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874192 of field osm_id of feature 30626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874196 of field osm_id of feature 30627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874199 of field osm_id of feature 30628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480874199 of field osm_id of feature 30629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875431 of field osm_id of feature 30630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875432 of field osm_id of feature 30631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875433 of field osm_id of feature 30632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875434 of field osm_id of feature 30633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875435 of field osm_id of feature 30634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875785 of field osm_id of feature 30635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875787 of field osm_id of feature 30636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875789 of field osm_id of feature 30637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875791 of field osm_id of feature 30638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875793 of field osm_id of feature 30639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480875796 of field osm_id of feature 30640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876258 of field osm_id of feature 30641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876260 of field osm_id of feature 30642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876261 of field osm_id of feature 30643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876262 of field osm_id of feature 30644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876968 of field osm_id of feature 30645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480876969 of field osm_id of feature 30646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480878374 of field osm_id of feature 30647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480878375 of field osm_id of feature 30648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480878376 of field osm_id of feature 30649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480878377 of field osm_id of feature 30650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879223 of field osm_id of feature 30651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879224 of field osm_id of feature 30652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879225 of field osm_id of feature 30653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879226 of field osm_id of feature 30654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879227 of field osm_id of feature 30655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879228 of field osm_id of feature 30656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480879365 of field osm_id of feature 30657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480880466 of field osm_id of feature 30658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480880469 of field osm_id of feature 30659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480880473 of field osm_id of feature 30660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480880476 of field osm_id of feature 30661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480881489 of field osm_id of feature 30662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882209 of field osm_id of feature 30663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882210 of field osm_id of feature 30664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882211 of field osm_id of feature 30665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882765 of field osm_id of feature 30666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882768 of field osm_id of feature 30667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882771 of field osm_id of feature 30668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882775 of field osm_id of feature 30669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480882778 of field osm_id of feature 30670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480883011 of field osm_id of feature 30671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480883012 of field osm_id of feature 30672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884462 of field osm_id of feature 30673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884463 of field osm_id of feature 30674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884466 of field osm_id of feature 30675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884468 of field osm_id of feature 30676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884469 of field osm_id of feature 30677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884470 of field osm_id of feature 30678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884471 of field osm_id of feature 30679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884472 of field osm_id of feature 30680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884473 of field osm_id of feature 30681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884474 of field osm_id of feature 30682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884475 of field osm_id of feature 30683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884476 of field osm_id of feature 30684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884477 of field osm_id of feature 30685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884478 of field osm_id of feature 30686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884478 of field osm_id of feature 30687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884851 of field osm_id of feature 30688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480884852 of field osm_id of feature 30689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885317 of field osm_id of feature 30690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885318 of field osm_id of feature 30691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885319 of field osm_id of feature 30692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885320 of field osm_id of feature 30693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885321 of field osm_id of feature 30694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885652 of field osm_id of feature 30695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885653 of field osm_id of feature 30696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885654 of field osm_id of feature 30697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885655 of field osm_id of feature 30698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885656 of field osm_id of feature 30699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885657 of field osm_id of feature 30700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885658 of field osm_id of feature 30701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885660 of field osm_id of feature 30702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885663 of field osm_id of feature 30703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480885664 of field osm_id of feature 30704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886467 of field osm_id of feature 30705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886467 of field osm_id of feature 30706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886468 of field osm_id of feature 30707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886468 of field osm_id of feature 30708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886469 of field osm_id of feature 30709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886470 of field osm_id of feature 30710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886567 of field osm_id of feature 30711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886568 of field osm_id of feature 30712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886569 of field osm_id of feature 30713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886570 of field osm_id of feature 30714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886571 of field osm_id of feature 30715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480886572 of field osm_id of feature 30716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480888443 of field osm_id of feature 30717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480888443 of field osm_id of feature 30718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480888446 of field osm_id of feature 30719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480888448 of field osm_id of feature 30720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480888452 of field osm_id of feature 30721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480889490 of field osm_id of feature 30722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480889492 of field osm_id of feature 30723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480889495 of field osm_id of feature 30724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890249 of field osm_id of feature 30725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890252 of field osm_id of feature 30726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890253 of field osm_id of feature 30727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890254 of field osm_id of feature 30728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890255 of field osm_id of feature 30729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890494 of field osm_id of feature 30730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890495 of field osm_id of feature 30731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890496 of field osm_id of feature 30732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890496 of field osm_id of feature 30733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890497 of field osm_id of feature 30734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890498 of field osm_id of feature 30735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890499 of field osm_id of feature 30736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890500 of field osm_id of feature 30737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890500 of field osm_id of feature 30738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890501 of field osm_id of feature 30739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890502 of field osm_id of feature 30740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890568 of field osm_id of feature 30741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890569 of field osm_id of feature 30742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890571 of field osm_id of feature 30743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890572 of field osm_id of feature 30744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480890573 of field osm_id of feature 30745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891140 of field osm_id of feature 30746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891141 of field osm_id of feature 30747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891142 of field osm_id of feature 30748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891143 of field osm_id of feature 30749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891144 of field osm_id of feature 30750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891145 of field osm_id of feature 30751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891146 of field osm_id of feature 30752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891147 of field osm_id of feature 30753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891609 of field osm_id of feature 30754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891610 of field osm_id of feature 30755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891611 of field osm_id of feature 30756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480891612 of field osm_id of feature 30757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480892165 of field osm_id of feature 30758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480892169 of field osm_id of feature 30759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480892170 of field osm_id of feature 30760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480892171 of field osm_id of feature 30761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480892172 of field osm_id of feature 30762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893591 of field osm_id of feature 30763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893592 of field osm_id of feature 30764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893593 of field osm_id of feature 30765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893594 of field osm_id of feature 30766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893969 of field osm_id of feature 30767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893971 of field osm_id of feature 30768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893973 of field osm_id of feature 30769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893975 of field osm_id of feature 30770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893976 of field osm_id of feature 30771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480893979 of field osm_id of feature 30772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894180 of field osm_id of feature 30773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894181 of field osm_id of feature 30774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894182 of field osm_id of feature 30775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894185 of field osm_id of feature 30776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894189 of field osm_id of feature 30777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480894192 of field osm_id of feature 30778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895682 of field osm_id of feature 30779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895683 of field osm_id of feature 30780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895684 of field osm_id of feature 30781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895685 of field osm_id of feature 30782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895686 of field osm_id of feature 30783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480895687 of field osm_id of feature 30784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896376 of field osm_id of feature 30785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896377 of field osm_id of feature 30786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896395 of field osm_id of feature 30787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896396 of field osm_id of feature 30788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896397 of field osm_id of feature 30789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896398 of field osm_id of feature 30790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896399 of field osm_id of feature 30791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896400 of field osm_id of feature 30792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480896401 of field osm_id of feature 30793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480897764 of field osm_id of feature 30794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480897765 of field osm_id of feature 30795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480900952 of field osm_id of feature 30796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480900954 of field osm_id of feature 30797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904697 of field osm_id of feature 30798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904768 of field osm_id of feature 30799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904769 of field osm_id of feature 30800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904770 of field osm_id of feature 30801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904771 of field osm_id of feature 30802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904772 of field osm_id of feature 30803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904773 of field osm_id of feature 30804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904774 of field osm_id of feature 30805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480904775 of field osm_id of feature 30806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480912423 of field osm_id of feature 30807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480914769 of field osm_id of feature 30808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480914771 of field osm_id of feature 30809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480914774 of field osm_id of feature 30810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480914776 of field osm_id of feature 30811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918299 of field osm_id of feature 30812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918300 of field osm_id of feature 30813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918301 of field osm_id of feature 30814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918302 of field osm_id of feature 30815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918303 of field osm_id of feature 30816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918304 of field osm_id of feature 30817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918305 of field osm_id of feature 30818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918306 of field osm_id of feature 30819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918307 of field osm_id of feature 30820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918307 of field osm_id of feature 30821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918609 of field osm_id of feature 30822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918610 of field osm_id of feature 30823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918611 of field osm_id of feature 30824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918612 of field osm_id of feature 30825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918613 of field osm_id of feature 30826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918614 of field osm_id of feature 30827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918615 of field osm_id of feature 30828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918616 of field osm_id of feature 30829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918617 of field osm_id of feature 30830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918946 of field osm_id of feature 30831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918947 of field osm_id of feature 30832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918948 of field osm_id of feature 30833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918950 of field osm_id of feature 30834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918951 of field osm_id of feature 30835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918952 of field osm_id of feature 30836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918953 of field osm_id of feature 30837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918954 of field osm_id of feature 30838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918955 of field osm_id of feature 30839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918956 of field osm_id of feature 30840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918957 of field osm_id of feature 30841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480918957 of field osm_id of feature 30842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919238 of field osm_id of feature 30843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919239 of field osm_id of feature 30844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919241 of field osm_id of feature 30845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919242 of field osm_id of feature 30846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919243 of field osm_id of feature 30847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919244 of field osm_id of feature 30848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919245 of field osm_id of feature 30849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919512 of field osm_id of feature 30850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919513 of field osm_id of feature 30851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919514 of field osm_id of feature 30852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919515 of field osm_id of feature 30853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919516 of field osm_id of feature 30854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919516 of field osm_id of feature 30855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919517 of field osm_id of feature 30856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919518 of field osm_id of feature 30857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480919519 of field osm_id of feature 30858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920242 of field osm_id of feature 30859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920243 of field osm_id of feature 30860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920244 of field osm_id of feature 30861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920245 of field osm_id of feature 30862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920246 of field osm_id of feature 30863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920247 of field osm_id of feature 30864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920248 of field osm_id of feature 30865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920249 of field osm_id of feature 30866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920250 of field osm_id of feature 30867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920251 of field osm_id of feature 30868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920253 of field osm_id of feature 30869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920254 of field osm_id of feature 30870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920420 of field osm_id of feature 30871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480920421 of field osm_id of feature 30872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921213 of field osm_id of feature 30873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921214 of field osm_id of feature 30874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921215 of field osm_id of feature 30875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921216 of field osm_id of feature 30876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921264 of field osm_id of feature 30877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921264 of field osm_id of feature 30878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921265 of field osm_id of feature 30879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921266 of field osm_id of feature 30880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921267 of field osm_id of feature 30881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921268 of field osm_id of feature 30882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921269 of field osm_id of feature 30883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921270 of field osm_id of feature 30884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921427 of field osm_id of feature 30885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921428 of field osm_id of feature 30886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921429 of field osm_id of feature 30887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921430 of field osm_id of feature 30888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921431 of field osm_id of feature 30889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921432 of field osm_id of feature 30890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921890 of field osm_id of feature 30891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921891 of field osm_id of feature 30892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921892 of field osm_id of feature 30893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921893 of field osm_id of feature 30894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480921894 of field osm_id of feature 30895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922005 of field osm_id of feature 30896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922005 of field osm_id of feature 30897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922008 of field osm_id of feature 30898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922009 of field osm_id of feature 30899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922168 of field osm_id of feature 30900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922169 of field osm_id of feature 30901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922170 of field osm_id of feature 30902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922171 of field osm_id of feature 30903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922236 of field osm_id of feature 30904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922237 of field osm_id of feature 30905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922238 of field osm_id of feature 30906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922239 of field osm_id of feature 30907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922569 of field osm_id of feature 30908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922570 of field osm_id of feature 30909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922573 of field osm_id of feature 30910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922575 of field osm_id of feature 30911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922578 of field osm_id of feature 30912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480922580 of field osm_id of feature 30913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923439 of field osm_id of feature 30914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923440 of field osm_id of feature 30915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923441 of field osm_id of feature 30916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923442 of field osm_id of feature 30917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923757 of field osm_id of feature 30918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923758 of field osm_id of feature 30919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923758 of field osm_id of feature 30920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923761 of field osm_id of feature 30921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923761 of field osm_id of feature 30922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923879 of field osm_id of feature 30923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923880 of field osm_id of feature 30924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923881 of field osm_id of feature 30925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923882 of field osm_id of feature 30926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923884 of field osm_id of feature 30927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923884 of field osm_id of feature 30928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923887 of field osm_id of feature 30929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923889 of field osm_id of feature 30930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923890 of field osm_id of feature 30931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480923891 of field osm_id of feature 30932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480924749 of field osm_id of feature 30933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480924753 of field osm_id of feature 30934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480924754 of field osm_id of feature 30935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926559 of field osm_id of feature 30936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926561 of field osm_id of feature 30937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926564 of field osm_id of feature 30938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926567 of field osm_id of feature 30939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926570 of field osm_id of feature 30940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926725 of field osm_id of feature 30941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926728 of field osm_id of feature 30942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480926730 of field osm_id of feature 30943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927418 of field osm_id of feature 30944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927673 of field osm_id of feature 30945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927674 of field osm_id of feature 30946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927675 of field osm_id of feature 30947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927676 of field osm_id of feature 30948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927677 of field osm_id of feature 30949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927678 of field osm_id of feature 30950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927679 of field osm_id of feature 30951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927680 of field osm_id of feature 30952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927680 of field osm_id of feature 30953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927779 of field osm_id of feature 30954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927779 of field osm_id of feature 30955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927833 of field osm_id of feature 30956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480927834 of field osm_id of feature 30957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928241 of field osm_id of feature 30958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928242 of field osm_id of feature 30959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928243 of field osm_id of feature 30960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928244 of field osm_id of feature 30961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928245 of field osm_id of feature 30962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928875 of field osm_id of feature 30963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928875 of field osm_id of feature 30964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480928901 of field osm_id of feature 30965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480929722 of field osm_id of feature 30966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480929724 of field osm_id of feature 30967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480929726 of field osm_id of feature 30968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480929727 of field osm_id of feature 30969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930010 of field osm_id of feature 30970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930011 of field osm_id of feature 30971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930012 of field osm_id of feature 30972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930013 of field osm_id of feature 30973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930014 of field osm_id of feature 30974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930015 of field osm_id of feature 30975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930016 of field osm_id of feature 30976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930017 of field osm_id of feature 30977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930018 of field osm_id of feature 30978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930423 of field osm_id of feature 30979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930424 of field osm_id of feature 30980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930989 of field osm_id of feature 30981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930990 of field osm_id of feature 30982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930991 of field osm_id of feature 30983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480930992 of field osm_id of feature 30984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480933735 of field osm_id of feature 30985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480933736 of field osm_id of feature 30986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480933737 of field osm_id of feature 30987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934379 of field osm_id of feature 30988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934379 of field osm_id of feature 30989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934380 of field osm_id of feature 30990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934381 of field osm_id of feature 30991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934464 of field osm_id of feature 30992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934465 of field osm_id of feature 30993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934466 of field osm_id of feature 30994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934467 of field osm_id of feature 30995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934574 of field osm_id of feature 30996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934575 of field osm_id of feature 30997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934579 of field osm_id of feature 30998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934580 of field osm_id of feature 30999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934581 of field osm_id of feature 31000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934582 of field osm_id of feature 31001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934586 of field osm_id of feature 31002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934587 of field osm_id of feature 31003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934588 of field osm_id of feature 31004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934589 of field osm_id of feature 31005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934690 of field osm_id of feature 31006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934691 of field osm_id of feature 31007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934692 of field osm_id of feature 31008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480934693 of field osm_id of feature 31009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936771 of field osm_id of feature 31010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936772 of field osm_id of feature 31011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936813 of field osm_id of feature 31012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936814 of field osm_id of feature 31013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936814 of field osm_id of feature 31014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936815 of field osm_id of feature 31015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936962 of field osm_id of feature 31016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936964 of field osm_id of feature 31017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936965 of field osm_id of feature 31018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480936967 of field osm_id of feature 31019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480937812 of field osm_id of feature 31020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480937812 of field osm_id of feature 31021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480937813 of field osm_id of feature 31022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480937814 of field osm_id of feature 31023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480937815 of field osm_id of feature 31024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938271 of field osm_id of feature 31025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938272 of field osm_id of feature 31026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938272 of field osm_id of feature 31027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938273 of field osm_id of feature 31028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938274 of field osm_id of feature 31029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938275 of field osm_id of feature 31030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938276 of field osm_id of feature 31031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480938277 of field osm_id of feature 31032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939030 of field osm_id of feature 31033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939034 of field osm_id of feature 31034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939035 of field osm_id of feature 31035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939036 of field osm_id of feature 31036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939037 of field osm_id of feature 31037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939038 of field osm_id of feature 31038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939039 of field osm_id of feature 31039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939040 of field osm_id of feature 31040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939041 of field osm_id of feature 31041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939042 of field osm_id of feature 31042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480939043 of field osm_id of feature 31043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940123 of field osm_id of feature 31044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940124 of field osm_id of feature 31045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940125 of field osm_id of feature 31046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940913 of field osm_id of feature 31047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940913 of field osm_id of feature 31048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940914 of field osm_id of feature 31049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940915 of field osm_id of feature 31050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940915 of field osm_id of feature 31051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940916 of field osm_id of feature 31052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940916 of field osm_id of feature 31053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940945 of field osm_id of feature 31054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940946 of field osm_id of feature 31055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940947 of field osm_id of feature 31056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940948 of field osm_id of feature 31057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940949 of field osm_id of feature 31058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940950 of field osm_id of feature 31059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480940951 of field osm_id of feature 31060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480941499 of field osm_id of feature 31061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480941500 of field osm_id of feature 31062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480942268 of field osm_id of feature 31063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480942268 of field osm_id of feature 31064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480942269 of field osm_id of feature 31065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480942270 of field osm_id of feature 31066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480943871 of field osm_id of feature 31067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480943872 of field osm_id of feature 31068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480943873 of field osm_id of feature 31069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480943874 of field osm_id of feature 31070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480943875 of field osm_id of feature 31071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480944380 of field osm_id of feature 31072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946137 of field osm_id of feature 31073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946138 of field osm_id of feature 31074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946353 of field osm_id of feature 31075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946570 of field osm_id of feature 31076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946896 of field osm_id of feature 31077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946897 of field osm_id of feature 31078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480946898 of field osm_id of feature 31079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948476 of field osm_id of feature 31080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948477 of field osm_id of feature 31081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948478 of field osm_id of feature 31082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948479 of field osm_id of feature 31083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948481 of field osm_id of feature 31084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480948482 of field osm_id of feature 31085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480950273 of field osm_id of feature 31086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480950274 of field osm_id of feature 31087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480957394 of field osm_id of feature 31088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480957394 of field osm_id of feature 31089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480957623 of field osm_id of feature 31090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 480957815 of field osm_id of feature 31091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481003183 of field osm_id of feature 31092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481003183 of field osm_id of feature 31093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040663 of field osm_id of feature 31094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040664 of field osm_id of feature 31095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040692 of field osm_id of feature 31096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040693 of field osm_id of feature 31097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040694 of field osm_id of feature 31098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040695 of field osm_id of feature 31099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481040696 of field osm_id of feature 31100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041450 of field osm_id of feature 31101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041451 of field osm_id of feature 31102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041452 of field osm_id of feature 31103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041453 of field osm_id of feature 31104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041454 of field osm_id of feature 31105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041455 of field osm_id of feature 31106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041456 of field osm_id of feature 31107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041456 of field osm_id of feature 31108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041457 of field osm_id of feature 31109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481041458 of field osm_id of feature 31110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481042800 of field osm_id of feature 31111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481042801 of field osm_id of feature 31112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481042802 of field osm_id of feature 31113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481042804 of field osm_id of feature 31114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481043077 of field osm_id of feature 31115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481043078 of field osm_id of feature 31116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481046450 of field osm_id of feature 31117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481046451 of field osm_id of feature 31118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481046452 of field osm_id of feature 31119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481046453 of field osm_id of feature 31120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048480 of field osm_id of feature 31121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048482 of field osm_id of feature 31122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048485 of field osm_id of feature 31123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048488 of field osm_id of feature 31124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048490 of field osm_id of feature 31125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048641 of field osm_id of feature 31126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048645 of field osm_id of feature 31127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048646 of field osm_id of feature 31128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048647 of field osm_id of feature 31129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481048648 of field osm_id of feature 31130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481050174 of field osm_id of feature 31131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481050904 of field osm_id of feature 31132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481052001 of field osm_id of feature 31133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481052182 of field osm_id of feature 31134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481052182 of field osm_id of feature 31135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481052183 of field osm_id of feature 31136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481052184 of field osm_id of feature 31137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054230 of field osm_id of feature 31138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054232 of field osm_id of feature 31139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054235 of field osm_id of feature 31140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054237 of field osm_id of feature 31141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054660 of field osm_id of feature 31142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054661 of field osm_id of feature 31143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054870 of field osm_id of feature 31144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054874 of field osm_id of feature 31145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054875 of field osm_id of feature 31146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054876 of field osm_id of feature 31147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481054877 of field osm_id of feature 31148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481055610 of field osm_id of feature 31149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481055611 of field osm_id of feature 31150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481055612 of field osm_id of feature 31151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481055614 of field osm_id of feature 31152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481055615 of field osm_id of feature 31153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056403 of field osm_id of feature 31154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056404 of field osm_id of feature 31155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056405 of field osm_id of feature 31156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056406 of field osm_id of feature 31157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056408 of field osm_id of feature 31158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056409 of field osm_id of feature 31159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056463 of field osm_id of feature 31160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056464 of field osm_id of feature 31161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056465 of field osm_id of feature 31162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056466 of field osm_id of feature 31163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056467 of field osm_id of feature 31164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056778 of field osm_id of feature 31165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056779 of field osm_id of feature 31166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056891 of field osm_id of feature 31167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481056891 of field osm_id of feature 31168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481058103 of field osm_id of feature 31169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481058104 of field osm_id of feature 31170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481058177 of field osm_id of feature 31171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481059869 of field osm_id of feature 31172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481059870 of field osm_id of feature 31173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481059871 of field osm_id of feature 31174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481059872 of field osm_id of feature 31175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060196 of field osm_id of feature 31176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060197 of field osm_id of feature 31177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060198 of field osm_id of feature 31178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060199 of field osm_id of feature 31179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060199 of field osm_id of feature 31180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060200 of field osm_id of feature 31181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060201 of field osm_id of feature 31182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060202 of field osm_id of feature 31183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060203 of field osm_id of feature 31184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060204 of field osm_id of feature 31185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060205 of field osm_id of feature 31186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060206 of field osm_id of feature 31187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060207 of field osm_id of feature 31188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060208 of field osm_id of feature 31189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060209 of field osm_id of feature 31190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060210 of field osm_id of feature 31191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060242 of field osm_id of feature 31192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060247 of field osm_id of feature 31193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060251 of field osm_id of feature 31194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060984 of field osm_id of feature 31195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060985 of field osm_id of feature 31196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481060986 of field osm_id of feature 31197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481061437 of field osm_id of feature 31198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481061438 of field osm_id of feature 31199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066091 of field osm_id of feature 31200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066092 of field osm_id of feature 31201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066093 of field osm_id of feature 31202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066094 of field osm_id of feature 31203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066095 of field osm_id of feature 31204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066096 of field osm_id of feature 31205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066097 of field osm_id of feature 31206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066098 of field osm_id of feature 31207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066099 of field osm_id of feature 31208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066100 of field osm_id of feature 31209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066101 of field osm_id of feature 31210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066102 of field osm_id of feature 31211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066103 of field osm_id of feature 31212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066104 of field osm_id of feature 31213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066105 of field osm_id of feature 31214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066106 of field osm_id of feature 31215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066107 of field osm_id of feature 31216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066108 of field osm_id of feature 31217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066109 of field osm_id of feature 31218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066110 of field osm_id of feature 31219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066111 of field osm_id of feature 31220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066388 of field osm_id of feature 31221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066389 of field osm_id of feature 31222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066390 of field osm_id of feature 31223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066391 of field osm_id of feature 31224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066392 of field osm_id of feature 31225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066393 of field osm_id of feature 31226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481066907 of field osm_id of feature 31227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481067780 of field osm_id of feature 31228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481068877 of field osm_id of feature 31229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481069677 of field osm_id of feature 31230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481069764 of field osm_id of feature 31231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481069764 of field osm_id of feature 31232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481069766 of field osm_id of feature 31233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481069890 of field osm_id of feature 31234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070065 of field osm_id of feature 31235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070066 of field osm_id of feature 31236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070067 of field osm_id of feature 31237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070068 of field osm_id of feature 31238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070069 of field osm_id of feature 31239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070312 of field osm_id of feature 31240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070313 of field osm_id of feature 31241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070648 of field osm_id of feature 31242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070776 of field osm_id of feature 31243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070777 of field osm_id of feature 31244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070778 of field osm_id of feature 31245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070779 of field osm_id of feature 31246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481070780 of field osm_id of feature 31247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481071749 of field osm_id of feature 31248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481073471 of field osm_id of feature 31249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481073472 of field osm_id of feature 31250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075464 of field osm_id of feature 31251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075465 of field osm_id of feature 31252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075466 of field osm_id of feature 31253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075467 of field osm_id of feature 31254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075468 of field osm_id of feature 31255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075469 of field osm_id of feature 31256 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481075470 of field osm_id of feature 31257 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077007 of field osm_id of feature 31258 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077008 of field osm_id of feature 31259 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077009 of field osm_id of feature 31260 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077094 of field osm_id of feature 31261 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077095 of field osm_id of feature 31262 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077096 of field osm_id of feature 31263 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077097 of field osm_id of feature 31264 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077098 of field osm_id of feature 31265 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077099 of field osm_id of feature 31266 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077101 of field osm_id of feature 31267 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077103 of field osm_id of feature 31268 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077104 of field osm_id of feature 31269 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077655 of field osm_id of feature 31270 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077656 of field osm_id of feature 31271 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077658 of field osm_id of feature 31272 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077659 of field osm_id of feature 31273 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481077877 of field osm_id of feature 31274 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481078465 of field osm_id of feature 31275 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481078466 of field osm_id of feature 31276 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481078467 of field osm_id of feature 31277 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481078468 of field osm_id of feature 31278 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481078477 of field osm_id of feature 31279 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079136 of field osm_id of feature 31280 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079137 of field osm_id of feature 31281 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079138 of field osm_id of feature 31282 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079139 of field osm_id of feature 31283 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079140 of field osm_id of feature 31284 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079141 of field osm_id of feature 31285 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079142 of field osm_id of feature 31286 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079143 of field osm_id of feature 31287 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079144 of field osm_id of feature 31288 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079145 of field osm_id of feature 31289 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079146 of field osm_id of feature 31290 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079147 of field osm_id of feature 31291 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079148 of field osm_id of feature 31292 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079625 of field osm_id of feature 31293 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079626 of field osm_id of feature 31294 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079627 of field osm_id of feature 31295 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481079628 of field osm_id of feature 31296 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080477 of field osm_id of feature 31297 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080478 of field osm_id of feature 31298 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080479 of field osm_id of feature 31299 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080480 of field osm_id of feature 31300 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080489 of field osm_id of feature 31301 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080490 of field osm_id of feature 31302 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481080774 of field osm_id of feature 31303 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081698 of field osm_id of feature 31304 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081699 of field osm_id of feature 31305 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081700 of field osm_id of feature 31306 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081718 of field osm_id of feature 31307 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081719 of field osm_id of feature 31308 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081720 of field osm_id of feature 31309 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481081721 of field osm_id of feature 31310 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481082208 of field osm_id of feature 31311 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481082209 of field osm_id of feature 31312 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481082222 of field osm_id of feature 31313 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481082978 of field osm_id of feature 31314 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481084414 of field osm_id of feature 31315 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481084416 of field osm_id of feature 31316 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481084419 of field osm_id of feature 31317 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481085041 of field osm_id of feature 31318 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481086000 of field osm_id of feature 31319 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481094361 of field osm_id of feature 31320 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481094362 of field osm_id of feature 31321 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481094363 of field osm_id of feature 31322 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481094364 of field osm_id of feature 31323 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481094365 of field osm_id of feature 31324 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481095642 of field osm_id of feature 31325 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481095643 of field osm_id of feature 31326 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481095644 of field osm_id of feature 31327 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481095645 of field osm_id of feature 31328 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481095646 of field osm_id of feature 31329 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481097147 of field osm_id of feature 31330 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481097148 of field osm_id of feature 31331 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481097759 of field osm_id of feature 31332 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481098359 of field osm_id of feature 31333 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481098362 of field osm_id of feature 31334 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481098859 of field osm_id of feature 31335 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481098860 of field osm_id of feature 31336 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481098861 of field osm_id of feature 31337 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481099760 of field osm_id of feature 31338 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481099761 of field osm_id of feature 31339 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481099779 of field osm_id of feature 31340 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481099781 of field osm_id of feature 31341 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481099782 of field osm_id of feature 31342 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481100955 of field osm_id of feature 31343 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481100956 of field osm_id of feature 31344 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481100957 of field osm_id of feature 31345 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481100997 of field osm_id of feature 31346 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481101723 of field osm_id of feature 31347 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102222 of field osm_id of feature 31348 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102223 of field osm_id of feature 31349 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102224 of field osm_id of feature 31350 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102409 of field osm_id of feature 31351 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102412 of field osm_id of feature 31352 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481102416 of field osm_id of feature 31353 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481104273 of field osm_id of feature 31354 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481104681 of field osm_id of feature 31355 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481104682 of field osm_id of feature 31356 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481105398 of field osm_id of feature 31357 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481105862 of field osm_id of feature 31358 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106826 of field osm_id of feature 31359 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106827 of field osm_id of feature 31360 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106828 of field osm_id of feature 31361 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106829 of field osm_id of feature 31362 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106831 of field osm_id of feature 31363 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106832 of field osm_id of feature 31364 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106833 of field osm_id of feature 31365 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106834 of field osm_id of feature 31366 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106834 of field osm_id of feature 31367 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106835 of field osm_id of feature 31368 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106836 of field osm_id of feature 31369 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106837 of field osm_id of feature 31370 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106838 of field osm_id of feature 31371 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106839 of field osm_id of feature 31372 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106840 of field osm_id of feature 31373 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106842 of field osm_id of feature 31374 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106843 of field osm_id of feature 31375 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481106844 of field osm_id of feature 31376 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481108155 of field osm_id of feature 31377 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481108649 of field osm_id of feature 31378 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481108650 of field osm_id of feature 31379 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481109317 of field osm_id of feature 31380 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110198 of field osm_id of feature 31381 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110947 of field osm_id of feature 31382 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110948 of field osm_id of feature 31383 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110949 of field osm_id of feature 31384 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110991 of field osm_id of feature 31385 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481110992 of field osm_id of feature 31386 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481111552 of field osm_id of feature 31387 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481111575 of field osm_id of feature 31388 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481112147 of field osm_id of feature 31389 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481112150 of field osm_id of feature 31390 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481112152 of field osm_id of feature 31391 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481112207 of field osm_id of feature 31392 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481113344 of field osm_id of feature 31393 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481113348 of field osm_id of feature 31394 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481113454 of field osm_id of feature 31395 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481114110 of field osm_id of feature 31396 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481114694 of field osm_id of feature 31397 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481114695 of field osm_id of feature 31398 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116722 of field osm_id of feature 31399 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116723 of field osm_id of feature 31400 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116724 of field osm_id of feature 31401 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116725 of field osm_id of feature 31402 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116726 of field osm_id of feature 31403 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481116727 of field osm_id of feature 31404 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117334 of field osm_id of feature 31405 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117335 of field osm_id of feature 31406 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117336 of field osm_id of feature 31407 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117337 of field osm_id of feature 31408 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117338 of field osm_id of feature 31409 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117339 of field osm_id of feature 31410 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117340 of field osm_id of feature 31411 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117341 of field osm_id of feature 31412 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117342 of field osm_id of feature 31413 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117344 of field osm_id of feature 31414 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481117345 of field osm_id of feature 31415 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481121524 of field osm_id of feature 31416 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481121856 of field osm_id of feature 31417 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481122208 of field osm_id of feature 31418 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481124291 of field osm_id of feature 31419 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481124292 of field osm_id of feature 31420 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481292509 of field osm_id of feature 31421 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481292510 of field osm_id of feature 31422 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481293386 of field osm_id of feature 31423 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596159 of field osm_id of feature 31424 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596160 of field osm_id of feature 31425 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596161 of field osm_id of feature 31426 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596162 of field osm_id of feature 31427 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596163 of field osm_id of feature 31428 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596163 of field osm_id of feature 31429 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596164 of field osm_id of feature 31430 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596164 of field osm_id of feature 31431 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596165 of field osm_id of feature 31432 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596966 of field osm_id of feature 31433 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481596967 of field osm_id of feature 31434 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597826 of field osm_id of feature 31435 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597827 of field osm_id of feature 31436 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597827 of field osm_id of feature 31437 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597828 of field osm_id of feature 31438 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597828 of field osm_id of feature 31439 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597829 of field osm_id of feature 31440 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597830 of field osm_id of feature 31441 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597831 of field osm_id of feature 31442 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481597832 of field osm_id of feature 31443 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481599716 of field osm_id of feature 31444 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481599717 of field osm_id of feature 31445 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600417 of field osm_id of feature 31446 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600418 of field osm_id of feature 31447 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600419 of field osm_id of feature 31448 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600420 of field osm_id of feature 31449 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600809 of field osm_id of feature 31450 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600810 of field osm_id of feature 31451 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600811 of field osm_id of feature 31452 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481600812 of field osm_id of feature 31453 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481601368 of field osm_id of feature 31454 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481601369 of field osm_id of feature 31455 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481602939 of field osm_id of feature 31456 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481603655 of field osm_id of feature 31457 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481603656 of field osm_id of feature 31458 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481603657 of field osm_id of feature 31459 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481603658 of field osm_id of feature 31460 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481603659 of field osm_id of feature 31461 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481604607 of field osm_id of feature 31462 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481605394 of field osm_id of feature 31463 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481605395 of field osm_id of feature 31464 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481605396 of field osm_id of feature 31465 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481605397 of field osm_id of feature 31466 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481605398 of field osm_id of feature 31467 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606278 of field osm_id of feature 31468 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606279 of field osm_id of feature 31469 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606279 of field osm_id of feature 31470 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606280 of field osm_id of feature 31471 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606280 of field osm_id of feature 31472 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606283 of field osm_id of feature 31473 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481606284 of field osm_id of feature 31474 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481607022 of field osm_id of feature 31475 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481607023 of field osm_id of feature 31476 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481607024 of field osm_id of feature 31477 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481607025 of field osm_id of feature 31478 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481607026 of field osm_id of feature 31479 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481614978 of field osm_id of feature 31480 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481614979 of field osm_id of feature 31481 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481614980 of field osm_id of feature 31482 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481614981 of field osm_id of feature 31483 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481614984 of field osm_id of feature 31484 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615560 of field osm_id of feature 31485 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615561 of field osm_id of feature 31486 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615562 of field osm_id of feature 31487 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615562 of field osm_id of feature 31488 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615564 of field osm_id of feature 31489 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615565 of field osm_id of feature 31490 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615566 of field osm_id of feature 31491 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615567 of field osm_id of feature 31492 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615736 of field osm_id of feature 31493 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615737 of field osm_id of feature 31494 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481615921 of field osm_id of feature 31495 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616485 of field osm_id of feature 31496 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616486 of field osm_id of feature 31497 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616912 of field osm_id of feature 31498 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616913 of field osm_id of feature 31499 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616914 of field osm_id of feature 31500 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481616915 of field osm_id of feature 31501 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481618738 of field osm_id of feature 31502 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481618762 of field osm_id of feature 31503 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481618763 of field osm_id of feature 31504 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481618764 of field osm_id of feature 31505 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481618765 of field osm_id of feature 31506 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619156 of field osm_id of feature 31507 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619448 of field osm_id of feature 31508 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619449 of field osm_id of feature 31509 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619880 of field osm_id of feature 31510 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619881 of field osm_id of feature 31511 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481619882 of field osm_id of feature 31512 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621498 of field osm_id of feature 31513 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621499 of field osm_id of feature 31514 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621500 of field osm_id of feature 31515 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621501 of field osm_id of feature 31516 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621502 of field osm_id of feature 31517 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621503 of field osm_id of feature 31518 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621504 of field osm_id of feature 31519 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621505 of field osm_id of feature 31520 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621506 of field osm_id of feature 31521 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621507 of field osm_id of feature 31522 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621508 of field osm_id of feature 31523 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621510 of field osm_id of feature 31524 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621511 of field osm_id of feature 31525 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621512 of field osm_id of feature 31526 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621513 of field osm_id of feature 31527 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621514 of field osm_id of feature 31528 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621516 of field osm_id of feature 31529 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621517 of field osm_id of feature 31530 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621518 of field osm_id of feature 31531 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621519 of field osm_id of feature 31532 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621520 of field osm_id of feature 31533 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481621522 of field osm_id of feature 31534 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481622706 of field osm_id of feature 31535 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481622750 of field osm_id of feature 31536 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481622751 of field osm_id of feature 31537 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481622752 of field osm_id of feature 31538 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623197 of field osm_id of feature 31539 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623198 of field osm_id of feature 31540 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623199 of field osm_id of feature 31541 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623200 of field osm_id of feature 31542 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623201 of field osm_id of feature 31543 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623202 of field osm_id of feature 31544 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623204 of field osm_id of feature 31545 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623205 of field osm_id of feature 31546 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623209 of field osm_id of feature 31547 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623214 of field osm_id of feature 31548 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623217 of field osm_id of feature 31549 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623221 of field osm_id of feature 31550 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623223 of field osm_id of feature 31551 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623226 of field osm_id of feature 31552 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623232 of field osm_id of feature 31553 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623239 of field osm_id of feature 31554 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623641 of field osm_id of feature 31555 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623641 of field osm_id of feature 31556 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623642 of field osm_id of feature 31557 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481623643 of field osm_id of feature 31558 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626375 of field osm_id of feature 31559 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626376 of field osm_id of feature 31560 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626377 of field osm_id of feature 31561 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626943 of field osm_id of feature 31562 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626951 of field osm_id of feature 31563 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626957 of field osm_id of feature 31564 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481626963 of field osm_id of feature 31565 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481627682 of field osm_id of feature 31566 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481627683 of field osm_id of feature 31567 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481627684 of field osm_id of feature 31568 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481627710 of field osm_id of feature 31569 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628407 of field osm_id of feature 31570 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628408 of field osm_id of feature 31571 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628501 of field osm_id of feature 31572 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628502 of field osm_id of feature 31573 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628924 of field osm_id of feature 31574 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628925 of field osm_id of feature 31575 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628926 of field osm_id of feature 31576 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628927 of field osm_id of feature 31577 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628928 of field osm_id of feature 31578 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628929 of field osm_id of feature 31579 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628985 of field osm_id of feature 31580 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628986 of field osm_id of feature 31581 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628987 of field osm_id of feature 31582 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481628988 of field osm_id of feature 31583 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481629425 of field osm_id of feature 31584 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481629426 of field osm_id of feature 31585 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481629427 of field osm_id of feature 31586 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481629427 of field osm_id of feature 31587 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481630997 of field osm_id of feature 31588 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632303 of field osm_id of feature 31589 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632304 of field osm_id of feature 31590 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632481 of field osm_id of feature 31591 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632575 of field osm_id of feature 31592 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632575 of field osm_id of feature 31593 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632578 of field osm_id of feature 31594 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632578 of field osm_id of feature 31595 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632580 of field osm_id of feature 31596 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632583 of field osm_id of feature 31597 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632949 of field osm_id of feature 31598 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632950 of field osm_id of feature 31599 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632951 of field osm_id of feature 31600 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632952 of field osm_id of feature 31601 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632952 of field osm_id of feature 31602 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632953 of field osm_id of feature 31603 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632954 of field osm_id of feature 31604 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632955 of field osm_id of feature 31605 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632956 of field osm_id of feature 31606 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632957 of field osm_id of feature 31607 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481632958 of field osm_id of feature 31608 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636177 of field osm_id of feature 31609 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636177 of field osm_id of feature 31610 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636178 of field osm_id of feature 31611 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636179 of field osm_id of feature 31612 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636180 of field osm_id of feature 31613 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636180 of field osm_id of feature 31614 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636756 of field osm_id of feature 31615 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636757 of field osm_id of feature 31616 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636758 of field osm_id of feature 31617 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636759 of field osm_id of feature 31618 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636760 of field osm_id of feature 31619 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636763 of field osm_id of feature 31620 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481636764 of field osm_id of feature 31621 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481637065 of field osm_id of feature 31622 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481637828 of field osm_id of feature 31623 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481638002 of field osm_id of feature 31624 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481638868 of field osm_id of feature 31625 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481638869 of field osm_id of feature 31626 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481638870 of field osm_id of feature 31627 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481638871 of field osm_id of feature 31628 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481639731 of field osm_id of feature 31629 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481640652 of field osm_id of feature 31630 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481640653 of field osm_id of feature 31631 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481640654 of field osm_id of feature 31632 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481640655 of field osm_id of feature 31633 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481642240 of field osm_id of feature 31634 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481642243 of field osm_id of feature 31635 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481642687 of field osm_id of feature 31636 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481642687 of field osm_id of feature 31637 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481643162 of field osm_id of feature 31638 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481643999 of field osm_id of feature 31639 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481646413 of field osm_id of feature 31640 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481646417 of field osm_id of feature 31641 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481646418 of field osm_id of feature 31642 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481646419 of field osm_id of feature 31643 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481646420 of field osm_id of feature 31644 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481647797 of field osm_id of feature 31645 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481647800 of field osm_id of feature 31646 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481647803 of field osm_id of feature 31647 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649580 of field osm_id of feature 31648 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649582 of field osm_id of feature 31649 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649583 of field osm_id of feature 31650 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649584 of field osm_id of feature 31651 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649913 of field osm_id of feature 31652 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481649916 of field osm_id of feature 31653 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481650006 of field osm_id of feature 31654 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481650999 of field osm_id of feature 31655 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651000 of field osm_id of feature 31656 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651001 of field osm_id of feature 31657 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651343 of field osm_id of feature 31658 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651344 of field osm_id of feature 31659 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651345 of field osm_id of feature 31660 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651346 of field osm_id of feature 31661 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651347 of field osm_id of feature 31662 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651348 of field osm_id of feature 31663 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651349 of field osm_id of feature 31664 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651350 of field osm_id of feature 31665 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651351 of field osm_id of feature 31666 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651352 of field osm_id of feature 31667 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651353 of field osm_id of feature 31668 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651354 of field osm_id of feature 31669 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651355 of field osm_id of feature 31670 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481651356 of field osm_id of feature 31671 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481652098 of field osm_id of feature 31672 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481652099 of field osm_id of feature 31673 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481652497 of field osm_id of feature 31674 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653156 of field osm_id of feature 31675 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653398 of field osm_id of feature 31676 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653402 of field osm_id of feature 31677 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653405 of field osm_id of feature 31678 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653407 of field osm_id of feature 31679 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481653409 of field osm_id of feature 31680 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481655194 of field osm_id of feature 31681 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656667 of field osm_id of feature 31682 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656672 of field osm_id of feature 31683 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656673 of field osm_id of feature 31684 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656674 of field osm_id of feature 31685 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656675 of field osm_id of feature 31686 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656676 of field osm_id of feature 31687 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656677 of field osm_id of feature 31688 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656678 of field osm_id of feature 31689 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656679 of field osm_id of feature 31690 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656680 of field osm_id of feature 31691 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656681 of field osm_id of feature 31692 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656682 of field osm_id of feature 31693 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656683 of field osm_id of feature 31694 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656684 of field osm_id of feature 31695 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656708 of field osm_id of feature 31696 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656720 of field osm_id of feature 31697 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481656721 of field osm_id of feature 31698 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659311 of field osm_id of feature 31699 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659315 of field osm_id of feature 31700 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659316 of field osm_id of feature 31701 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659320 of field osm_id of feature 31702 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659321 of field osm_id of feature 31703 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659322 of field osm_id of feature 31704 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659323 of field osm_id of feature 31705 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659598 of field osm_id of feature 31706 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659599 of field osm_id of feature 31707 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659600 of field osm_id of feature 31708 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659601 of field osm_id of feature 31709 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659602 of field osm_id of feature 31710 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659911 of field osm_id of feature 31711 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659912 of field osm_id of feature 31712 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659913 of field osm_id of feature 31713 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481659914 of field osm_id of feature 31714 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481660833 of field osm_id of feature 31715 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481660834 of field osm_id of feature 31716 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481660835 of field osm_id of feature 31717 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481660836 of field osm_id of feature 31718 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481661172 of field osm_id of feature 31719 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481661572 of field osm_id of feature 31720 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481661573 of field osm_id of feature 31721 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481661573 of field osm_id of feature 31722 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481661574 of field osm_id of feature 31723 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666055 of field osm_id of feature 31724 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666056 of field osm_id of feature 31725 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666057 of field osm_id of feature 31726 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666058 of field osm_id of feature 31727 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666059 of field osm_id of feature 31728 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666060 of field osm_id of feature 31729 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666062 of field osm_id of feature 31730 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481666065 of field osm_id of feature 31731 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667086 of field osm_id of feature 31732 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667087 of field osm_id of feature 31733 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667088 of field osm_id of feature 31734 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667089 of field osm_id of feature 31735 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667090 of field osm_id of feature 31736 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667091 of field osm_id of feature 31737 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667092 of field osm_id of feature 31738 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667093 of field osm_id of feature 31739 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667094 of field osm_id of feature 31740 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667095 of field osm_id of feature 31741 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667096 of field osm_id of feature 31742 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667097 of field osm_id of feature 31743 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667098 of field osm_id of feature 31744 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667099 of field osm_id of feature 31745 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667100 of field osm_id of feature 31746 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481667101 of field osm_id of feature 31747 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481668924 of field osm_id of feature 31748 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669049 of field osm_id of feature 31749 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669050 of field osm_id of feature 31750 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669051 of field osm_id of feature 31751 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669052 of field osm_id of feature 31752 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669668 of field osm_id of feature 31753 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669669 of field osm_id of feature 31754 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669670 of field osm_id of feature 31755 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481669877 of field osm_id of feature 31756 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481671866 of field osm_id of feature 31757 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481671868 of field osm_id of feature 31758 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481671869 of field osm_id of feature 31759 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481671871 of field osm_id of feature 31760 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481671872 of field osm_id of feature 31761 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672084 of field osm_id of feature 31762 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672085 of field osm_id of feature 31763 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672643 of field osm_id of feature 31764 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672958 of field osm_id of feature 31765 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672963 of field osm_id of feature 31766 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672966 of field osm_id of feature 31767 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672968 of field osm_id of feature 31768 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672970 of field osm_id of feature 31769 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672973 of field osm_id of feature 31770 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672975 of field osm_id of feature 31771 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672977 of field osm_id of feature 31772 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481672979 of field osm_id of feature 31773 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481673127 of field osm_id of feature 31774 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674681 of field osm_id of feature 31775 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674701 of field osm_id of feature 31776 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674702 of field osm_id of feature 31777 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674703 of field osm_id of feature 31778 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674705 of field osm_id of feature 31779 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674705 of field osm_id of feature 31780 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674706 of field osm_id of feature 31781 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674707 of field osm_id of feature 31782 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674931 of field osm_id of feature 31783 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674932 of field osm_id of feature 31784 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674933 of field osm_id of feature 31785 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674934 of field osm_id of feature 31786 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674935 of field osm_id of feature 31787 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674936 of field osm_id of feature 31788 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674937 of field osm_id of feature 31789 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674938 of field osm_id of feature 31790 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674939 of field osm_id of feature 31791 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674940 of field osm_id of feature 31792 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674941 of field osm_id of feature 31793 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674945 of field osm_id of feature 31794 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674948 of field osm_id of feature 31795 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674949 of field osm_id of feature 31796 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481674951 of field osm_id of feature 31797 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481675642 of field osm_id of feature 31798 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676023 of field osm_id of feature 31799 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676024 of field osm_id of feature 31800 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676025 of field osm_id of feature 31801 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676033 of field osm_id of feature 31802 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676678 of field osm_id of feature 31803 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676679 of field osm_id of feature 31804 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676840 of field osm_id of feature 31805 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676841 of field osm_id of feature 31806 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676842 of field osm_id of feature 31807 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676843 of field osm_id of feature 31808 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481676844 of field osm_id of feature 31809 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677043 of field osm_id of feature 31810 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677045 of field osm_id of feature 31811 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677141 of field osm_id of feature 31812 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677142 of field osm_id of feature 31813 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677144 of field osm_id of feature 31814 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677145 of field osm_id of feature 31815 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481677145 of field osm_id of feature 31816 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678154 of field osm_id of feature 31817 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678159 of field osm_id of feature 31818 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678430 of field osm_id of feature 31819 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678431 of field osm_id of feature 31820 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678432 of field osm_id of feature 31821 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678433 of field osm_id of feature 31822 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678434 of field osm_id of feature 31823 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678435 of field osm_id of feature 31824 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678435 of field osm_id of feature 31825 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481678436 of field osm_id of feature 31826 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679396 of field osm_id of feature 31827 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679397 of field osm_id of feature 31828 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679398 of field osm_id of feature 31829 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679399 of field osm_id of feature 31830 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679771 of field osm_id of feature 31831 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679772 of field osm_id of feature 31832 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679773 of field osm_id of feature 31833 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679774 of field osm_id of feature 31834 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679775 of field osm_id of feature 31835 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481679776 of field osm_id of feature 31836 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481680200 of field osm_id of feature 31837 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481680363 of field osm_id of feature 31838 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481680364 of field osm_id of feature 31839 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481680365 of field osm_id of feature 31840 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481681381 of field osm_id of feature 31841 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481681382 of field osm_id of feature 31842 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481681383 of field osm_id of feature 31843 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481681384 of field osm_id of feature 31844 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481681385 of field osm_id of feature 31845 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682012 of field osm_id of feature 31846 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682489 of field osm_id of feature 31847 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682734 of field osm_id of feature 31848 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682742 of field osm_id of feature 31849 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682743 of field osm_id of feature 31850 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682744 of field osm_id of feature 31851 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682745 of field osm_id of feature 31852 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682746 of field osm_id of feature 31853 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682747 of field osm_id of feature 31854 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481682748 of field osm_id of feature 31855 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481685631 of field osm_id of feature 31856 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481685632 of field osm_id of feature 31857 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481685633 of field osm_id of feature 31858 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481685634 of field osm_id of feature 31859 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481687714 of field osm_id of feature 31860 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481688397 of field osm_id of feature 31861 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481689387 of field osm_id of feature 31862 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481689388 of field osm_id of feature 31863 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481689389 of field osm_id of feature 31864 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481689924 of field osm_id of feature 31865 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481689924 of field osm_id of feature 31866 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481690085 of field osm_id of feature 31867 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481690087 of field osm_id of feature 31868 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481690087 of field osm_id of feature 31869 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481691268 of field osm_id of feature 31870 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481691269 of field osm_id of feature 31871 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481691269 of field osm_id of feature 31872 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481780600 of field osm_id of feature 31873 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481780604 of field osm_id of feature 31874 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481780605 of field osm_id of feature 31875 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481801810 of field osm_id of feature 31876 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481801816 of field osm_id of feature 31877 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845638 of field osm_id of feature 31878 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845639 of field osm_id of feature 31879 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845640 of field osm_id of feature 31880 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845641 of field osm_id of feature 31881 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845642 of field osm_id of feature 31882 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845643 of field osm_id of feature 31883 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845644 of field osm_id of feature 31884 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845645 of field osm_id of feature 31885 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481845646 of field osm_id of feature 31886 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481847667 of field osm_id of feature 31887 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481847668 of field osm_id of feature 31888 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481847669 of field osm_id of feature 31889 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481847670 of field osm_id of feature 31890 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481848292 of field osm_id of feature 31891 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481848524 of field osm_id of feature 31892 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481848525 of field osm_id of feature 31893 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849631 of field osm_id of feature 31894 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849632 of field osm_id of feature 31895 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849633 of field osm_id of feature 31896 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849634 of field osm_id of feature 31897 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849635 of field osm_id of feature 31898 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481849637 of field osm_id of feature 31899 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481852784 of field osm_id of feature 31900 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481852785 of field osm_id of feature 31901 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481852786 of field osm_id of feature 31902 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481852787 of field osm_id of feature 31903 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481853590 of field osm_id of feature 31904 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481853593 of field osm_id of feature 31905 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854042 of field osm_id of feature 31906 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854043 of field osm_id of feature 31907 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854719 of field osm_id of feature 31908 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854720 of field osm_id of feature 31909 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854721 of field osm_id of feature 31910 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854722 of field osm_id of feature 31911 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854723 of field osm_id of feature 31912 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854726 of field osm_id of feature 31913 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854727 of field osm_id of feature 31914 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854728 of field osm_id of feature 31915 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481854729 of field osm_id of feature 31916 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481856167 of field osm_id of feature 31917 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481856199 of field osm_id of feature 31918 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481857612 of field osm_id of feature 31919 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481857613 of field osm_id of feature 31920 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481857614 of field osm_id of feature 31921 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481857615 of field osm_id of feature 31922 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862693 of field osm_id of feature 31923 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862791 of field osm_id of feature 31924 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862792 of field osm_id of feature 31925 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862793 of field osm_id of feature 31926 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862794 of field osm_id of feature 31927 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862795 of field osm_id of feature 31928 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481862796 of field osm_id of feature 31929 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481863680 of field osm_id of feature 31930 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481863681 of field osm_id of feature 31931 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481863682 of field osm_id of feature 31932 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481864064 of field osm_id of feature 31933 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481864065 of field osm_id of feature 31934 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481864066 of field osm_id of feature 31935 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481864560 of field osm_id of feature 31936 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481865498 of field osm_id of feature 31937 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481869556 of field osm_id of feature 31938 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481869559 of field osm_id of feature 31939 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481869562 of field osm_id of feature 31940 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481869564 of field osm_id of feature 31941 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481870403 of field osm_id of feature 31942 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481870404 of field osm_id of feature 31943 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481870405 of field osm_id of feature 31944 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481870406 of field osm_id of feature 31945 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481870407 of field osm_id of feature 31946 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481873030 of field osm_id of feature 31947 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481873031 of field osm_id of feature 31948 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481873032 of field osm_id of feature 31949 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481874103 of field osm_id of feature 31950 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481874104 of field osm_id of feature 31951 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481874105 of field osm_id of feature 31952 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481874106 of field osm_id of feature 31953 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481875752 of field osm_id of feature 31954 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481877310 of field osm_id of feature 31955 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481877311 of field osm_id of feature 31956 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481877312 of field osm_id of feature 31957 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481877314 of field osm_id of feature 31958 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481877315 of field osm_id of feature 31959 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481878188 of field osm_id of feature 31960 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481878541 of field osm_id of feature 31961 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481878543 of field osm_id of feature 31962 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879062 of field osm_id of feature 31963 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879063 of field osm_id of feature 31964 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879064 of field osm_id of feature 31965 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879065 of field osm_id of feature 31966 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879066 of field osm_id of feature 31967 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481879067 of field osm_id of feature 31968 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880713 of field osm_id of feature 31969 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880714 of field osm_id of feature 31970 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880715 of field osm_id of feature 31971 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880716 of field osm_id of feature 31972 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880717 of field osm_id of feature 31973 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880718 of field osm_id of feature 31974 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481880719 of field osm_id of feature 31975 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881416 of field osm_id of feature 31976 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881417 of field osm_id of feature 31977 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881417 of field osm_id of feature 31978 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881418 of field osm_id of feature 31979 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881419 of field osm_id of feature 31980 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481881827 of field osm_id of feature 31981 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882412 of field osm_id of feature 31982 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882502 of field osm_id of feature 31983 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882502 of field osm_id of feature 31984 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882503 of field osm_id of feature 31985 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882504 of field osm_id of feature 31986 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882505 of field osm_id of feature 31987 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882506 of field osm_id of feature 31988 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882507 of field osm_id of feature 31989 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882508 of field osm_id of feature 31990 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882509 of field osm_id of feature 31991 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882513 of field osm_id of feature 31992 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882514 of field osm_id of feature 31993 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882565 of field osm_id of feature 31994 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882566 of field osm_id of feature 31995 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882567 of field osm_id of feature 31996 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882568 of field osm_id of feature 31997 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882569 of field osm_id of feature 31998 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882570 of field osm_id of feature 31999 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882571 of field osm_id of feature 32000 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882693 of field osm_id of feature 32001 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882936 of field osm_id of feature 32002 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882937 of field osm_id of feature 32003 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882938 of field osm_id of feature 32004 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882941 of field osm_id of feature 32005 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882943 of field osm_id of feature 32006 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882944 of field osm_id of feature 32007 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882944 of field osm_id of feature 32008 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882947 of field osm_id of feature 32009 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882950 of field osm_id of feature 32010 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481882968 of field osm_id of feature 32011 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883078 of field osm_id of feature 32012 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883079 of field osm_id of feature 32013 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883080 of field osm_id of feature 32014 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883081 of field osm_id of feature 32015 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883082 of field osm_id of feature 32016 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883083 of field osm_id of feature 32017 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883084 of field osm_id of feature 32018 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883085 of field osm_id of feature 32019 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883245 of field osm_id of feature 32020 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883246 of field osm_id of feature 32021 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883247 of field osm_id of feature 32022 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883248 of field osm_id of feature 32023 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883250 of field osm_id of feature 32024 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883251 of field osm_id of feature 32025 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481883811 of field osm_id of feature 32026 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481884804 of field osm_id of feature 32027 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481884805 of field osm_id of feature 32028 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481884806 of field osm_id of feature 32029 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481884808 of field osm_id of feature 32030 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885199 of field osm_id of feature 32031 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885200 of field osm_id of feature 32032 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885201 of field osm_id of feature 32033 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885203 of field osm_id of feature 32034 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885204 of field osm_id of feature 32035 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885206 of field osm_id of feature 32036 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885207 of field osm_id of feature 32037 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885209 of field osm_id of feature 32038 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885210 of field osm_id of feature 32039 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885211 of field osm_id of feature 32040 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885212 of field osm_id of feature 32041 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885213 of field osm_id of feature 32042 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885214 of field osm_id of feature 32043 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885215 of field osm_id of feature 32044 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885726 of field osm_id of feature 32045 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885841 of field osm_id of feature 32046 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885851 of field osm_id of feature 32047 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481885949 of field osm_id of feature 32048 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886852 of field osm_id of feature 32049 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886854 of field osm_id of feature 32050 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886855 of field osm_id of feature 32051 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886856 of field osm_id of feature 32052 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886857 of field osm_id of feature 32053 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886858 of field osm_id of feature 32054 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886859 of field osm_id of feature 32055 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886860 of field osm_id of feature 32056 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481886861 of field osm_id of feature 32057 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481889869 of field osm_id of feature 32058 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481894558 of field osm_id of feature 32059 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481894559 of field osm_id of feature 32060 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481894560 of field osm_id of feature 32061 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481896175 of field osm_id of feature 32062 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481896176 of field osm_id of feature 32063 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481896177 of field osm_id of feature 32064 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481896178 of field osm_id of feature 32065 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481897306 of field osm_id of feature 32066 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481897309 of field osm_id of feature 32067 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481897310 of field osm_id of feature 32068 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481898020 of field osm_id of feature 32069 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481898369 of field osm_id of feature 32070 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481898913 of field osm_id of feature 32071 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481898914 of field osm_id of feature 32072 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481899044 of field osm_id of feature 32073 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481901948 of field osm_id of feature 32074 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481909799 of field osm_id of feature 32075 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481965515 of field osm_id of feature 32076 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481965575 of field osm_id of feature 32077 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481965597 of field osm_id of feature 32078 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481971652 of field osm_id of feature 32079 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481984211 of field osm_id of feature 32080 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481984212 of field osm_id of feature 32081 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 481992322 of field osm_id of feature 32082 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482019766 of field osm_id of feature 32083 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482019767 of field osm_id of feature 32084 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482019767 of field osm_id of feature 32085 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482020764 of field osm_id of feature 32086 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482020764 of field osm_id of feature 32087 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482020765 of field osm_id of feature 32088 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482020766 of field osm_id of feature 32089 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032032 of field osm_id of feature 32090 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032036 of field osm_id of feature 32091 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032037 of field osm_id of feature 32092 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032949 of field osm_id of feature 32093 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032950 of field osm_id of feature 32094 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482032951 of field osm_id of feature 32095 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482036442 of field osm_id of feature 32096 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482036443 of field osm_id of feature 32097 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482036444 of field osm_id of feature 32098 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482036446 of field osm_id of feature 32099 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482036446 of field osm_id of feature 32100 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482038274 of field osm_id of feature 32101 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039841 of field osm_id of feature 32102 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039842 of field osm_id of feature 32103 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039843 of field osm_id of feature 32104 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039844 of field osm_id of feature 32105 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039846 of field osm_id of feature 32106 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039847 of field osm_id of feature 32107 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039929 of field osm_id of feature 32108 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039930 of field osm_id of feature 32109 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482039932 of field osm_id of feature 32110 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040128 of field osm_id of feature 32111 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040131 of field osm_id of feature 32112 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040134 of field osm_id of feature 32113 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040137 of field osm_id of feature 32114 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040140 of field osm_id of feature 32115 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040236 of field osm_id of feature 32116 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040237 of field osm_id of feature 32117 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040238 of field osm_id of feature 32118 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040239 of field osm_id of feature 32119 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040240 of field osm_id of feature 32120 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040485 of field osm_id of feature 32121 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040486 of field osm_id of feature 32122 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040487 of field osm_id of feature 32123 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040594 of field osm_id of feature 32124 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040595 of field osm_id of feature 32125 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040809 of field osm_id of feature 32126 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040811 of field osm_id of feature 32127 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040813 of field osm_id of feature 32128 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040815 of field osm_id of feature 32129 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040817 of field osm_id of feature 32130 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482040818 of field osm_id of feature 32131 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041430 of field osm_id of feature 32132 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041664 of field osm_id of feature 32133 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041665 of field osm_id of feature 32134 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041666 of field osm_id of feature 32135 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041667 of field osm_id of feature 32136 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041667 of field osm_id of feature 32137 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041672 of field osm_id of feature 32138 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041673 of field osm_id of feature 32139 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041674 of field osm_id of feature 32140 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041675 of field osm_id of feature 32141 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482041730 of field osm_id of feature 32142 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043038 of field osm_id of feature 32143 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043039 of field osm_id of feature 32144 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043148 of field osm_id of feature 32145 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043149 of field osm_id of feature 32146 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043307 of field osm_id of feature 32147 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043308 of field osm_id of feature 32148 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043990 of field osm_id of feature 32149 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043991 of field osm_id of feature 32150 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043992 of field osm_id of feature 32151 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043993 of field osm_id of feature 32152 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482043994 of field osm_id of feature 32153 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044343 of field osm_id of feature 32154 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044344 of field osm_id of feature 32155 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044345 of field osm_id of feature 32156 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044346 of field osm_id of feature 32157 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044347 of field osm_id of feature 32158 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044983 of field osm_id of feature 32159 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482044984 of field osm_id of feature 32160 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045019 of field osm_id of feature 32161 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045020 of field osm_id of feature 32162 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045021 of field osm_id of feature 32163 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045022 of field osm_id of feature 32164 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045117 of field osm_id of feature 32165 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482045118 of field osm_id of feature 32166 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046448 of field osm_id of feature 32167 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046449 of field osm_id of feature 32168 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046450 of field osm_id of feature 32169 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046505 of field osm_id of feature 32170 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046505 of field osm_id of feature 32171 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046506 of field osm_id of feature 32172 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046820 of field osm_id of feature 32173 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046821 of field osm_id of feature 32174 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046822 of field osm_id of feature 32175 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046823 of field osm_id of feature 32176 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046824 of field osm_id of feature 32177 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482046825 of field osm_id of feature 32178 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047176 of field osm_id of feature 32179 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047177 of field osm_id of feature 32180 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047336 of field osm_id of feature 32181 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047340 of field osm_id of feature 32182 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047343 of field osm_id of feature 32183 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047348 of field osm_id of feature 32184 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047350 of field osm_id of feature 32185 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047351 of field osm_id of feature 32186 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047352 of field osm_id of feature 32187 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047353 of field osm_id of feature 32188 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047354 of field osm_id of feature 32189 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047356 of field osm_id of feature 32190 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047357 of field osm_id of feature 32191 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047358 of field osm_id of feature 32192 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047359 of field osm_id of feature 32193 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047360 of field osm_id of feature 32194 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047361 of field osm_id of feature 32195 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047362 of field osm_id of feature 32196 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047363 of field osm_id of feature 32197 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482047471 of field osm_id of feature 32198 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482048341 of field osm_id of feature 32199 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482048342 of field osm_id of feature 32200 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049272 of field osm_id of feature 32201 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049273 of field osm_id of feature 32202 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049274 of field osm_id of feature 32203 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049275 of field osm_id of feature 32204 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049276 of field osm_id of feature 32205 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049277 of field osm_id of feature 32206 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482049278 of field osm_id of feature 32207 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050135 of field osm_id of feature 32208 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050136 of field osm_id of feature 32209 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050136 of field osm_id of feature 32210 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050137 of field osm_id of feature 32211 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050138 of field osm_id of feature 32212 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050138 of field osm_id of feature 32213 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050139 of field osm_id of feature 32214 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050139 of field osm_id of feature 32215 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050140 of field osm_id of feature 32216 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482050571 of field osm_id of feature 32217 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482051602 of field osm_id of feature 32218 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482052150 of field osm_id of feature 32219 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482052151 of field osm_id of feature 32220 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482052152 of field osm_id of feature 32221 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482052324 of field osm_id of feature 32222 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482052325 of field osm_id of feature 32223 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053290 of field osm_id of feature 32224 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053293 of field osm_id of feature 32225 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053296 of field osm_id of feature 32226 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053300 of field osm_id of feature 32227 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053304 of field osm_id of feature 32228 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053308 of field osm_id of feature 32229 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053310 of field osm_id of feature 32230 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053314 of field osm_id of feature 32231 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053318 of field osm_id of feature 32232 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482053322 of field osm_id of feature 32233 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482054699 of field osm_id of feature 32234 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482055189 of field osm_id of feature 32235 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482056343 of field osm_id of feature 32236 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482056345 of field osm_id of feature 32237 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057374 of field osm_id of feature 32238 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057939 of field osm_id of feature 32239 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057940 of field osm_id of feature 32240 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057941 of field osm_id of feature 32241 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057942 of field osm_id of feature 32242 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482057944 of field osm_id of feature 32243 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059927 of field osm_id of feature 32244 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059928 of field osm_id of feature 32245 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059929 of field osm_id of feature 32246 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059930 of field osm_id of feature 32247 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059931 of field osm_id of feature 32248 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059932 of field osm_id of feature 32249 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482059974 of field osm_id of feature 32250 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482063575 of field osm_id of feature 32251 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482065553 of field osm_id of feature 32252 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482065556 of field osm_id of feature 32253 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482068526 of field osm_id of feature 32254 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482071860 of field osm_id of feature 32255 not successfully written. Possibly due to too larger number with respect to field widthGDAL Message 1: Value 482071861 of field osm_id of feature 32256 not successfully written. Possibly due to too larger number with respect to field width